python 채굴 컴 퓨 팅 테스트 프로그램 상세 설명
4273 단어 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 의 공 통 된 인식 이 기본적으로 실현 되 었 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.