Browse Source

segwit_addr: Use normal comparison for tuple literal (#5712)

dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
Janus Troelsen 5 years ago
committed by ghost43
parent
commit
b86b3ec1d1
  1. 3
      electrum/segwit_addr.py

3
electrum/segwit_addr.py

@ -1,3 +1,4 @@
# Copyright (c) 2017 Pieter Wuille # Copyright (c) 2017 Pieter Wuille
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy # Permission is hereby granted, free of charge, to any person obtaining a copy
@ -118,5 +119,5 @@ def decode(hrp, addr):
def encode(hrp, witver, witprog): def encode(hrp, witver, witprog):
"""Encode a segwit address.""" """Encode a segwit address."""
ret = bech32_encode(hrp, [witver] + convertbits(witprog, 8, 5)) ret = bech32_encode(hrp, [witver] + convertbits(witprog, 8, 5))
assert decode(hrp, ret) is not (None, None) assert decode(hrp, ret) != (None, None)
return ret return ret

Loading…
Cancel
Save