This commit is contained in:
SomberNight 2018-02-24 00:30:40 +01:00
parent 55a0a6b7f0
commit f1b7578218
1 changed files with 2 additions and 2 deletions

View File

@ -463,10 +463,10 @@ class Abstract_Wallet(PrintError):
return height, conf, timestamp
elif tx_hash in self.unverified_tx:
height = self.unverified_tx[tx_hash]
return height, 0, False
return height, 0, None
else:
# local transaction
return TX_HEIGHT_LOCAL, 0, False
return TX_HEIGHT_LOCAL, 0, None
def get_txpos(self, tx_hash):
"return position, even if the tx is unverified"