Browse Source

Fix jm_single().bc_interface.get_deser_from_gettransaction call

fab97a003b (r139364262)
master
Kristaps Kaupe 2 years ago
parent
commit
3317b0b519
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 5
      src/jmclient/wallet_utils.py

5
src/jmclient/wallet_utils.py

@ -906,8 +906,9 @@ def wallet_fetch_history(wallet, options):
wallet_tx = jm_single().bc_interface.get_transaction(
ins.prevout.hash[::-1])
if wallet_tx:
wallet_tx_deser = jm_single.bc_interface(
).get_deser_from_gettransaction(wallet_tx)
wallet_tx_deser = jm_single(
).bc_interface.get_deser_from_gettransaction(
wallet_tx)
tx_cache[ins.prevout.hash[::-1]] = (wallet_tx,
wallet_tx_deser)
else:

Loading…
Cancel
Save