Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created January 16, 2018 17:54
Show Gist options
  • Save azamsharp/5046c13f2caa231a5691876bb68205d4 to your computer and use it in GitHub Desktop.
Save azamsharp/5046c13f2caa231a5691876bb68205d4 to your computer and use it in GitHub Desktop.
class Block {
constructor() {
this.index = 0
this.previousHash = ""
this.hash = ""
this.nonce = 0
this.transactions = []
}
}
module.exports = Block
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment