Skip to content

Instantly share code, notes, and snippets.

@bradford-hamilton
Created May 25, 2018 00:43
Show Gist options
  • Save bradford-hamilton/6afe261966b07681977854c01ebe9293 to your computer and use it in GitHub Desktop.
Save bradford-hamilton/6afe261966b07681977854c01ebe9293 to your computer and use it in GitHub Desktop.
module Crystal::Blockchain
blockchain = [] of NamedTuple(
index: Int32,
timestamp: String,
data: String,
hash: String,
prev_hash: String
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment