Skip to content

Commit

Permalink
Fix event generation in the case of the twitchauction dataset.
Browse files Browse the repository at this point in the history
  prices were generated in stead of sizes;
  • Loading branch information
KtorZ committed Jan 18, 2022
1 parent c749fd5 commit e36b4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datasets/twitchauction/build.mjs
Expand Up @@ -75,7 +75,7 @@ fs.createReadStream(INPUT_FILENAME)
source = edge.b;
target = edge.a;
}
const ev = [sl, source, "new-tx", pt.getPrice(), someAmount(PROACTIVE_SNAPSHOT), target].join(",")
const ev = [sl, source, "new-tx", someSize(), pt.getPrice(), target].join(",")
writer.write(ev);
}
}
Expand Down

0 comments on commit e36b4fa

Please sign in to comment.