1
0

Make use of trigger_callback easier to understand

This commit is contained in:
Neil Booth
2015-11-12 16:08:37 +09:00
parent 51ebdc5ce8
commit 206e38fb7c
3 changed files with 5 additions and 6 deletions

View File

@@ -435,7 +435,7 @@ class Abstract_Wallet(PrintError):
self.storage.put('verified_tx3', self.verified_tx, True)
conf, timestamp = self.get_confirmations(tx_hash)
self.network.trigger_callback('verified', (tx_hash, conf, timestamp))
self.network.trigger_callback('verified', tx_hash, conf, timestamp)
def get_unverified_txs(self):
'''Returns a map from tx hash to transaction height'''