1
0

bip70 PRs: use aiohttp instead of requests. use proxy. small fixes.

This commit is contained in:
SomberNight
2018-11-05 19:31:17 +01:00
parent 1b46866e34
commit 1686a97ece
5 changed files with 62 additions and 50 deletions

View File

@@ -327,7 +327,7 @@ def verify_message_with_address(address: str, sig65: bytes, message: bytes):
public_key.verify_message_hash(sig65[1:], h)
return True
except Exception as e:
print_error("Verification error: {0}".format(e))
print_error(f"Verification error: {repr(e)}")
return False