1
0

Added notifications when receiving a new transaction

This commit is contained in:
Maran
2013-05-31 18:23:51 +02:00
parent 887557865e
commit 468c76b66e
3 changed files with 21 additions and 5 deletions

View File

@@ -90,6 +90,7 @@ class Interface(threading.Thread):
self.unanswered_requests = {}
#banner
self.banner = ''
self.pending_transactions = []
def queue_json_response(self, c):

View File

@@ -674,7 +674,6 @@ class Wallet:
def receive_tx_callback(self, tx_hash, tx, tx_height):
if not self.check_new_tx(tx_hash, tx):
# may happen due to pruning
print_error("received transaction that is no longer referenced in history", tx_hash)
@@ -682,6 +681,10 @@ class Wallet:
with self.transaction_lock:
self.transactions[tx_hash] = tx
self.interface.pending_transactions.append(tx)
self.interface.trigger_callback("new_transaction")
self.save_transactions()
if self.verifier and tx_height>0:
self.verifier.add(tx_hash, tx_height)
@@ -694,7 +697,6 @@ class Wallet:
tx[k] = str(v)
self.config.set_key('transactions', tx, True)
def receive_history_callback(self, addr, hist):
if not self.check_new_history(addr, hist):