Browse Source

Fix KeyErrror typo

master
Chris Beaven 10 years ago
parent
commit
fc141cba28
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -772,7 +772,7 @@ class Abstract_Wallet(PrintError):
try: try:
self.txi.pop(tx_hash) self.txi.pop(tx_hash)
self.txo.pop(tx_hash) self.txo.pop(tx_hash)
except KeyErrror: except KeyError:
self.print_error("tx was not in history", tx_hash) self.print_error("tx was not in history", tx_hash)
def receive_tx_callback(self, tx_hash, tx, tx_height): def receive_tx_callback(self, tx_hash, tx, tx_height):

Loading…
Cancel
Save