Merge pull request #1498 from SmileyChris/master

Fix KeyErrror typo
This commit is contained in:
Neil 2015-10-19 12:20:22 +09:00
commit 71aa823ee0
1 changed files with 1 additions and 1 deletions

View File

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