python 채굴 컴 퓨 팅 테스트 프로그램 상세 설명

비트 코 인 에 대해 말하자면,우 리 는 모두 채굴 을 알 고 있 으 며,어떤 사람들 은 채굴 의 의 미 를 잘 모른다.이곳 의 채굴 은 사실 하 쉬 의 충돌 이다.간단 한 예 를 들 어:

import hashlib
x = 11
y = 1
#          ,        
while hashlib.sha256(f'{x*y}'.encode("utf-8")).hexdigest()[5:7]!="00":
  print(x*y)
  y +=1
print("   :",(x*y))
결 과 는 다음 과 같다.

물론 비트 코 인의 채굴 은 이것 보다 너무 복잡 하지만 원리 차이 가 많 지 않 아 대략적인 인식 을 가지 고 있다.
노드 의 동기 화 는 전체 노드 에서 가장 긴 블록 체인 을 가 져 와 동기 화 하 는 것 이다.그림 과 같다.

상기 내용 을 깔 면 코드 의 실현 과 이해 가 쉬 워 집 니 다.코드 는 다음 과 같 습 니 다.

#         
import datetime
import hashlib
import json
import requests

class Blockchain2:

  def __init__(self):
    self.chain = [] #     
    self.nodes = set() #    
    self.current_tranactions = [] #    
    self.new_block(proof=100,preHash=1) #       

  #      ,    ,    
  def new_block(self,proof,preHash = None):
    block={
      "index":len(self.chain)+1,#    
      "timestamp":datetime.datetiem.now(),#     
      "transactions":self.current_tranactions,#        
      "proof":proof,#    
      "preHash":preHash or self.hash(self.chain[-1]), #      
    }
    self.current_tranactions = [] #      ,         
    self.chain.append(block)

  @staticmethod
  def hash(block):
    #   json        
    block_str = json.dumps(block,sort_keys=True).encode("utf-8")
    return hashlib.sha256(block_str).hexdigest()

  #      
  def new_transaction(self,sender,receiver,amount):
    transaction ={
      "sender":sender,
      "receiver":receiver,
      "amount":amount,
    }

    self.current_tranactions.append(transaction)

    return self.last_block["index"]+1

  @property
  def last_block(self):
    return self.chain[-1]

  #  ,       ,       , POW    
  def proof_of_work(self,last_block):
    last_proof = last_block["proof"]
    last_hash = self.hash(last_block)
    proof = 0

    while self.valid_proof(last_proof,proof,last_hash) is False:
      proof +=1

    return proof

  #     
  @staticmethod
  def valid_proof(last_proof,proof,last_hash):
    guess = f'{last_proof}{proof}{last_hash}'.encode("utf-8")
    guess_hash = hashlib.sha256(guess).hexdigest()
    return guess_hash[:6] =="000000" #        

  #     ,    ,
  def resolve_conflicts(self):
    neighbours = self.nodes
    new_chain = None
    max_length = len(self.chain)
    #      ,      
    for node in neighbours:
      #         
      response = requests.get(f'http://{node}/chain')
      if response.status_code ==200:
        length = response.json()["length"]
        chain = response.json()["chain"]

        if length>max_length and self.valid_chain(chain):
          max_length = length
          new_chain = chain

    if new_chain:
      self.chain = new_chain
      return True
    else:
      return False

  #         
  def valid_chain(self,chain):
    last_block = chain[0]
    current_index = 1
    #        prehash,proof   
    while current_index <len(chain):
      block = chain[current_index]
      #        
      if block["preHash"] != self.hash(last_block):
        return False
      #        
      if not self.valid_proof(last_block["proof"],block["proof"],block["preHash"]):
        return False
      last_block = block
      current_index +=1
    return True
산 력 검사 와 pow 의 공 통 된 인식 이 기본적으로 실현 되 었 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기