Last active
February 23, 2023 04:23
-
-
Save vndee/51ac629c4c83ba5b6eb8313daa9ed5bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import hashlib | |
import datetime | |
class Blockchain(object): | |
def __init__(self): | |
self.chain = [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment