Browse Source

Merge pull request #1332 from romanz/master

fix small typos at lib/interface.py and lib/commands.py
283
ThomasV 9 years ago
parent
commit
516e469d3c
  1. 4
      lib/commands.py
  2. 2
      lib/interface.py

4
lib/commands.py

@ -199,8 +199,8 @@ class Commands:
t = Transaction(tx)
t.deserialize()
if privkey:
pubkey = bitcoin.public_key_from_private_key(sec)
t.sign({pubkey:sec})
pubkey = bitcoin.public_key_from_private_key(privkey)
t.sign({pubkey:privkey})
else:
self.wallet.sign_transaction(t, self.password)
return t

2
lib/interface.py

@ -228,7 +228,6 @@ class TcpInterface(threading.Thread):
try:
x = x509.X509()
x.parse(cert)
x.slow_parse()
except:
traceback.print_exc(file=sys.stderr)
self.print_error("wrong certificate")
@ -342,7 +341,6 @@ def check_cert(host, cert):
try:
x = x509.X509()
x.parse(cert)
x.slow_parse()
except:
traceback.print_exc(file=sys.stdout)
return

Loading…
Cancel
Save