Skip to content

Commit

Permalink
Corrected RVN block reward
Browse files Browse the repository at this point in the history
  • Loading branch information
MoneroOcean committed Jan 11, 2022
1 parent 637ceb9 commit c48db0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/coins/xmr.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function Coin(data){
console.error("getPortBlockHeaderByHash(" + port + ", " + blockHash + "): " + JSON.stringify(body));
return callback(true, body);
}
body.result.reward = (port == 8766 ? 5000 : 3750) * 100000000; // TODO: Change to 2500 on (~January 2022) at block 2,100,000
body.result.reward = (port == 8766 ? 2500 : 3750) * 100000000; // TODO: Change to 2500 on (~January 2022) at block 2,100,000
if (port == 9998) body.result.difficulty *= 0xFFFFFFFF;
return callback(null, body.result);
});
Expand Down

0 comments on commit c48db0d

Please sign in to comment.