Browse Source

add check in importprivkey

283
ThomasV 10 years ago
parent
commit
3fdfd23ca9
  1. 1
      lib/commands.py

1
lib/commands.py

@ -277,6 +277,7 @@ class Commands:
return s.encode('utf8') return s.encode('utf8')
def importprivkey(self, sec): def importprivkey(self, sec):
assert self.wallet.can_import()
try: try:
addr = self.wallet.import_key(sec,self.password) addr = self.wallet.import_key(sec,self.password)
out = "Keypair imported: ", addr out = "Keypair imported: ", addr

Loading…
Cancel
Save