python实现的区块链

# !/usr/bin/env python # -*- coding:utf-8 -*- import hashlib as hasher import datetime as date class Block: def __init__(self,index,timestamp,data,previous_hash): self.index=index
相关文章
相关标签/搜索