Skip to content

Instantly share code, notes, and snippets.

@konchunas
Created February 10, 2019 23:57
Show Gist options
  • Save konchunas/f1909accad13539f29cfb3a4a1635e34 to your computer and use it in GitHub Desktop.
Save konchunas/f1909accad13539f29cfb3a4a1635e34 to your computer and use it in GitHub Desktop.
class Genesis(Block):
def __init__(self, creation_time):
self.timestamp = creation_time
self.prev_hashes = []
def get_hash(self):
return self.precalculated_genesis_hash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment