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