我正在尝试遵循JS中的区块链教程,但是我正在Python上尝试它。
我已经走了这么远,当我尝试测试运行它时,我收到了这个语法错误,这使我感到困惑,因为它似乎合法。
有什么想法吗?
import hashlib
class block:
def __init__(self, index, timestamp, data, previous= ''):
self.index = index
self.timestamp = timestamp
self.data= data
self.previous = previous
self.hash = ''
def calculateHash(self):
return hashlib.sha256(self.index + self.previous + self.timestamp+ (self.data).__str__()
class blockchain:
#btw this it where it says the error is: "class"
def __init__(self):
self.chain= [self.createGenesisBlock()]
def createGenesisBlock(self):
return block(0, "01/01/2017", "Genesis Block", "0")
def getLatestBlock(self):
return self.chain[len(self.chain)-1]
def addBlock(self, newBlock):
newBlock.previous = self.getLatestBlock().hash
newBlock.hash= newBlock.calculateHash()
self.chain.push(newBlock)
korCoin = blockchain()
korCoin.addBlock(block(1, "10/07/2017", 4))
korCoin.addBlock(block(2, "12/07/2017", 40))
if __name__ = "__main__":
print(korCoin)
答案 0 :(得分:1)
您缺少右括号:
hashlib.sha256(self.index + self.previous + self.timestamp+ (self.data).__str__()
hashlib.sha256(self.index + self.previous + self.timestamp+ (self.data).__str__())
我假设您已经正确缩进了您的实际代码,但是在OP中粘贴了错误的标识。这就是为什么第一个答案要求您修复缩进的原因。
代码还有其他问题
self.index
是一个整数,您必须先将其转换为字符串,然后再与其他人串联。您不能连接字符串和整数
self.previous
是一个空字符串('') in the first
korCoin.addBlock`调用,但在第二个调用中是Hash对象。您必须在连接之前将其转换为字符串或检索其字符串表示形式与其他人
self.chain
是一个列表,列表没有push
方法。我想你是说append
答案 1 :(得分:-1)
您的类中的函数均具有错误的缩进。试试这个-
import hashlib
class Block:
def __init__(self, index, timestamp, data, previous= ''):
self.index = index
self.timestamp = timestamp
self.data= data
self.previous = previous
self.hash = ''
def calculateHash(self):
return hashlib.sha256(self.index + self.previous + self.timestamp+ (self.data).__str__()
class BlockChain:
def __init__(self):
self.chain= [self.createGenesisBlock()]
def createGenesisBlock(self):
return block(0, "01/01/2017", "Genesis Block", "0")
def getLatestBlock(self):
return self.chain[len(self.chain)-1]
def addBlock(self, newBlock):
newBlock.previous = self.getLatestBlock().hash
newBlock.hash= newBlock.calculateHash()
self.chain.push(newBlock)
korCoin = BlockChain()
korCoin.addBlock(block(1, "10/07/2017", 4))
korCoin.addBlock(block(2, "12/07/2017", 40))
if __name__ == "__main__":
print(korCoin)
按照python的缩进here