Skip to content

Instantly share code, notes, and snippets.

@cyberpirate92
Created May 14, 2019 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyberpirate92/cb7864bcecdbdc552254104643d9e09f to your computer and use it in GitHub Desktop.
Save cyberpirate92/cb7864bcecdbdc552254104643d9e09f to your computer and use it in GitHub Desktop.
public class BlockChain {
public List<Block> chain;
private int difficulty;
public BlockChain(int difficulty) {
chain = new ArrayList<>();
this.difficulty =
difficulty;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment