ldhldh commited on
Commit
4efcb9e
1 Parent(s): 750173b

Update Blockchain.py

Browse files
Files changed (1) hide show
  1. Blockchain.py +4 -0
Blockchain.py CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  class Blockchain:
2
  def __init__(self):
3
  self.chain = []
 
1
+ import hashlib
2
+ import json
3
+ from time import time
4
+
5
  class Blockchain:
6
  def __init__(self):
7
  self.chain = []