Skip to content

Instantly share code, notes, and snippets.

@iamvasanth07
iamvasanth07 / blockchain_1.py
Created June 27, 2018 13:48 — forked from jsphdnl/blockchain_1.py
BlockChain from Scratch Part 01 - python
import hashlib
import json
class TRBlock(object) :
def __init__(self, index, timestamp, data, prevHash, nonce, target):
'''
Default constructor for creating a block.
Parameters