Ejemplo n.º 1
0
	def setMerkleRoot(self):
		"""Sets merkle root."""
		self.merkleRoot = binaryRead.readHash(self.datFile)
Ejemplo n.º 2
0
	def setPreviousBlockHash(self):
		"""Sets previous block hash."""
		self.previousBlockHash = binaryRead.readHash(self.datFile)
Ejemplo n.º 3
0
	def setTransactionHash(self, datFile):
		"""Sets transaction hash."""
		self.transactionHash = binaryRead.readHash(datFile)
Ejemplo n.º 4
0
 def setTransactionHash(self, datFile):
     """Sets transaction hash."""
     self.transactionHash = binaryRead.readHash(datFile)
Ejemplo n.º 5
0
 def setMerkleRoot(self):
     """Sets merkle root."""
     self.merkleRoot = binaryRead.readHash(self.datFile)
Ejemplo n.º 6
0
 def setPreviousBlockHash(self):
     """Sets previous block hash."""
     self.previousBlockHash = binaryRead.readHash(self.datFile)