Browse Source

Typo in importprivkey, missing self

master
nelisky 13 years ago
parent
commit
a38e789099
  1. 4
      lib/commands.py

4
lib/commands.py

@ -186,8 +186,8 @@ class Commands:
def importprivkey(self, sec): def importprivkey(self, sec):
try: try:
addr = wallet.import_key(sec,self.password) addr = self.wallet.import_key(sec,self.password)
wallet.save() self.wallet.save()
out = "Keypair imported: ", addr out = "Keypair imported: ", addr
except BaseException as e: except BaseException as e:
out = "Error: Keypair import failed: " + str(e) out = "Error: Keypair import failed: " + str(e)

Loading…
Cancel
Save