91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python簡單區塊鏈模擬詳解

發布時間:2020-10-04 10:08:09 來源:腳本之家 閱讀:144 作者:charles_lun 欄目:開發技術

最近學習了一點python,那就試著做一做簡單的編程練習。

首先是這個編程的指導圖,如下:

python簡單區塊鏈模擬詳解

對的,類似一個簡單區塊鏈的模擬。

代碼如下:

class DaDaBlockCoin:

 #index 索引,timestamp 時間戳,data 交易記錄,self_hash交易hash,last_hash,上個hash
 def __init__(self,idex,timestamp,data,last_hash):
  self.idex = idex
  self.timestamp = timestamp
  self.data = data
  self.last_hash = last_hash
  self.self_hash=self.hash_DaDaBlockCoin()


 def hash_DaDaBlockCoin(self):
  sha = hashlib.md5()#加密算法,這里可以選擇sha256,sha512,為了打印方便,所以選了md5
  #對數據整體加密
  datastr = str(self.idex)+str(self.timestamp)+str(self.data)+str(self.last_hash)
  sha.update(datastr.encode("utf-8"))
  return sha.hexdigest()

def create_first_DaDaBlock(): # 創世區塊

 return DaDaBlockCoin(0, datetime.datetime.now(), "love dadacoin", "0")

# last_block,上一個區塊
def create_money_DadaBlock(last_block): # 其它塊
 this_idex = last_block.idex + 1 # 索引加1
 this_timestamp = datetime.datetime.now()
 this_data = "love dada" + str(this_idex) # 模擬交易數據
 this_hash = last_block.self_hash # 取得上一塊的hash
 return DaDaBlockCoin(this_idex, this_timestamp, this_data, this_hash)

DaDaBlockCoins = [create_first_DaDaBlock()] # 區塊鏈列表,只有一個創世區塊
nums = 10
head_block = DaDaBlockCoins[0]
print(head_block.idex, head_block.timestamp, head_block.self_hash, head_block.last_hash)
for i in range(nums):
 dadaBlock_add = create_money_DadaBlock(head_block) # 創建一個區塊鏈的節點
 DaDaBlockCoins.append(dadaBlock_add)
 head_block = dadaBlock_add
 print(dadaBlock_add.idex, dadaBlock_add.timestamp, dadaBlock_add.self_hash, dadaBlock_add.last_hash)

打印結果如下:

python簡單區塊鏈模擬詳解

與開頭的指導思路完美契合,雖然只是很簡單的模擬。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涟源市| 西林县| 徐汇区| 新余市| 沭阳县| 霍林郭勒市| 田林县| 定兴县| 固始县| 大理市| 宁城县| 淄博市| 平武县| 日土县| 玛沁县| 伊宁县| 晋中市| 娱乐| 苏尼特右旗| 永昌县| 杨浦区| 德惠市| 高淳县| 延边| 麻栗坡县| 平度市| 阿坝| 广东省| 巴林左旗| 镇原县| 都昌县| 日喀则市| 繁昌县| 昌宁县| 东宁县| 布拖县| 大兴区| 闽清县| 郓城县| 岑巩县| 错那县|