The embedded time is needed.

This commit is contained in:
Jonathan Warren 2013-02-11 17:01:35 -05:00
parent 341cec8e59
commit 2bbc08f080
1 changed files with 1 additions and 1 deletions

View File

@ -1256,7 +1256,7 @@ class receiveDataThread(QThread):
def processpubkey(self):
readPosition = 24 #for the message header
readPosition += 8 #for the nonce
#embeddedTime, = unpack('>I',self.data[readPosition:readPosition+4]) #We don't need the time in this processpubkey function. It was checked earlier in the recpubkey function.
embeddedTime, = unpack('>I',self.data[readPosition:readPosition+4])
readPosition += 4 #for the time
addressVersion, varintLength = decodeVarint(self.data[readPosition:readPosition+10])
readPosition += varintLength