minor fixes

This commit is contained in:
thomasv 2013-09-10 16:13:30 +02:00
parent 323aafa34d
commit 74735bd64e
2 changed files with 6 additions and 5 deletions

View File

@ -27,12 +27,13 @@ from bitcoin import *
class TxVerifier(threading.Thread):
""" Simple Payment Verification """
def __init__(self, interface, blockchain, storage):
def __init__(self, network, storage):
threading.Thread.__init__(self)
self.daemon = True
self.storage = storage
self.blockchain = blockchain
self.interface = interface
self.network = network
self.blockchain = network.blockchain
self.interface = network.interface
self.transactions = {} # requested verifications (with height sent by the requestor)
self.interface.register_channel('txverifier')
self.verified_tx = storage.get('verified_tx3',{}) # height, timestamp of verified transactions
@ -143,7 +144,7 @@ class TxVerifier(threading.Thread):
self.verified_tx[tx_hash] = (tx_height, timestamp, pos)
print_error("verified %s"%tx_hash)
self.storage.put('verified_tx3', self.verified_tx, True)
self.interface.trigger_callback('updated')
self.network.trigger_callback('updated')
def hash_merkle_root(self, merkle_s, target_hash, pos):

View File

@ -1351,7 +1351,7 @@ class Wallet:
from verifier import TxVerifier
self.network = network
self.interface = network.interface
self.verifier = TxVerifier(self.interface, network.blockchain, self.storage)
self.verifier = TxVerifier(self.network, self.storage)
self.verifier.start()
self.set_verifier(self.verifier)
self.synchronizer = WalletSynchronizer(self)