SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
0 deletions
-
electrum/address_synchronizer.py
|
@ -380,6 +380,8 @@ class AddressSynchronizer(PrintError): |
|
|
for prevout_hash, d in _spent_outpoints.items(): |
|
|
for prevout_hash, d in _spent_outpoints.items(): |
|
|
for prevout_n_str, spending_txid in d.items(): |
|
|
for prevout_n_str, spending_txid in d.items(): |
|
|
prevout_n = int(prevout_n_str) |
|
|
prevout_n = int(prevout_n_str) |
|
|
|
|
|
if spending_txid not in self.transactions: |
|
|
|
|
|
continue # only care about txns we have |
|
|
self.spent_outpoints[prevout_hash][prevout_n] = spending_txid |
|
|
self.spent_outpoints[prevout_hash][prevout_n] = spending_txid |
|
|
|
|
|
|
|
|
@profiler |
|
|
@profiler |
|
|