Spaces:
Sleeping
Sleeping
Update Blockchain.py
Browse files- 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 = []
|