コード例 #1
0
ファイル: Transaction.py プロジェクト: TimTosi/spelunker
	def setLockTime(self, datFile):
		"""Sets object locktime."""
		self.lockTime = binaryRead.readUInt(datFile)
コード例 #2
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
	def setNonce(self):
		"""Sets nonce."""
		self.nonce = binaryRead.readUInt(self.datFile)
コード例 #3
0
ファイル: Transaction.py プロジェクト: TimTosi/spelunker
	def setTransactionVersion(self, datFile):
		"""Sets transaction version."""
		self.transactionVersion = binaryRead.readUInt(datFile)
コード例 #4
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
	def setTimeStamp(self):
		"""Sets timestamp."""
		self.timestamp = binaryRead.readUInt(self.datFile)
コード例 #5
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
	def setTargetDifficulty(self):
		"""Sets target difficulty."""
		self.targetDifficulty = binaryRead.readUInt(self.datFile)
コード例 #6
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
	def setBlockLength(self):
		"""Sets block length."""
		self.length = binaryRead.readUInt(self.datFile)
コード例 #7
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
	def setVersion(self):
		"""Sets version."""
		self.version = binaryRead.readUInt(self.datFile)
コード例 #8
0
ファイル: Input.py プロジェクト: TimTosi/spelunker
	def setTransactionIndex(self, datFile):
		"""Sets transaction index."""
		self.transactionIndex = binaryRead.readUInt(datFile)
コード例 #9
0
ファイル: Input.py プロジェクト: TimTosi/spelunker
	def setSequenceNumber(self, datFile):
		"""Sets sequence number."""
		self.sequenceNumber = binaryRead.readUInt(datFile)
コード例 #10
0
 def setTransactionIndex(self, datFile):
     """Sets transaction index."""
     self.transactionIndex = binaryRead.readUInt(datFile)
コード例 #11
0
 def setSequenceNumber(self, datFile):
     """Sets sequence number."""
     self.sequenceNumber = binaryRead.readUInt(datFile)
コード例 #12
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
 def setNonce(self):
     """Sets nonce."""
     self.nonce = binaryRead.readUInt(self.datFile)
コード例 #13
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
 def setTargetDifficulty(self):
     """Sets target difficulty."""
     self.targetDifficulty = binaryRead.readUInt(self.datFile)
コード例 #14
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
 def setTimeStamp(self):
     """Sets timestamp."""
     self.timestamp = binaryRead.readUInt(self.datFile)
コード例 #15
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
 def setVersion(self):
     """Sets version."""
     self.version = binaryRead.readUInt(self.datFile)
コード例 #16
0
ファイル: BlockHeader.py プロジェクト: TimTosi/spelunker
 def setBlockLength(self):
     """Sets block length."""
     self.length = binaryRead.readUInt(self.datFile)