Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created January 21, 2018 10:12
Show Gist options
  • Select an option

  • Save ssaurel/3b1678034bb1959aa49ec533187c39e7 to your computer and use it in GitHub Desktop.

Select an option

Save ssaurel/3b1678034bb1959aa49ec533187c39e7 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);
}
}
@higuey

higuey commented Sep 16, 2019

Copy link
Copy Markdown

Where is the Utils class with the zeros function, please?
Thanks
Higuey

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment