Skip to content

Instantly share code, notes, and snippets.

@spenserhuang
Last active December 28, 2017 06:35
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 spenserhuang/666235b9003e0b1b52b59164ce123a35 to your computer and use it in GitHub Desktop.
Save spenserhuang/666235b9003e0b1b52b59164ce123a35 to your computer and use it in GitHub Desktop.
js-blockchain Step 1
class Block {
constructor(timestamp, data) {
this.index = 0;
this.timestamp = timestamp;
this.data = data;
this.previousHash = "0";
this.hash = this.calculateHash();
this.nonce = 0;
}
calculateHash() {
}
mineBlock(difficulty) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment