Spaces:
Sleeping
Sleeping
Rename BlockChain_base.py to BlockChain.py
Browse files
BlockChain_base.py → BlockChain.py
RENAMED
|
@@ -1,7 +1,3 @@
|
|
| 1 |
-
import hashlib
|
| 2 |
-
import json
|
| 3 |
-
from time import time
|
| 4 |
-
|
| 5 |
class Blockchain:
|
| 6 |
def __init__(self):
|
| 7 |
self.chain = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
class Blockchain:
|
| 2 |
def __init__(self):
|
| 3 |
self.chain = []
|