Guest User

Untitled

a guest
Apr 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // Block represents each 'item' in the blockchain
  2. type Block struct {
  3. Index int
  4. Timestamp string
  5. BPM int
  6. Hash string
  7. PrevHash string
  8. }
  9.  
  10. // Blockchain is a series of validated Blocks
  11. var Blockchain []Block
  12.  
  13. var mutex = &sync.Mutex{}
Add Comment
Please, Sign In to add comment