Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Created May 13, 2021 07:08
Show Gist options
  • Save bluepnume/0a6a1e4070c8dd0c2e2990eebfd391a4 to your computer and use it in GitHub Desktop.
Save bluepnume/0a6a1e4070c8dd0c2e2990eebfd391a4 to your computer and use it in GitHub Desktop.
const calculateNewReward = (headBlock : BlockType) => {
return Math.floor(INITIAL_REWARD / (2 ** Math.floor(headBlock.index / REWARD_HALVING_SCHEDULE)));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment