Skip to content

Instantly share code, notes, and snippets.

View orcawhisperer's full-sized avatar
🎯
Focusing

vasanth orcawhisperer

🎯
Focusing
View GitHub Profile
@orcawhisperer
orcawhisperer / 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