Skip to content
Snippets Groups Projects
Commit cd346a00 authored by Youri Coppens's avatar Youri Coppens
Browse files

Deterministic rewards

parent 496059b2
No related branches found
No related tags found
No related merge requests found
......@@ -839,7 +839,7 @@ public static void gainCoin(byte block)
coins++;
// Sample reward from mean reward of the coin color
int delta = ThreadLocalRandom.current().nextInt(-10, 11);
int delta = 0; //ThreadLocalRandom.current().nextInt(-10, 11);
int value = 0;
switch (block) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment