Skip to content

Instantly share code, notes, and snippets.

@retzger
Forked from ssaurel/MineBlock.java
Created December 13, 2019 14:23
Show Gist options
  • Save retzger/2ebc173f980ef68bbb25c983bc72cf2d to your computer and use it in GitHub Desktop.
Save retzger/2ebc173f980ef68bbb25c983bc72cf2d to your computer and use it in GitHub Desktop.
Mining a Block in Java for toutsurlebitcoin.fr
public void mineBlock(int difficulty) {
nonce = 0;
while (!getHash().substring(0, difficulty).equals(Utils.zeros(difficulty))) {
nonce++;
hash = Block.calculateHash(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment