Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created January 21, 2018 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ssaurel/3b1678034bb1959aa49ec533187c39e7 to your computer and use it in GitHub Desktop.
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
Copy link

higuey commented Sep 16, 2019

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