segwit_addr: Use normal comparison for tuple literal (#5712)
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
|
||||
# Copyright (c) 2017 Pieter Wuille
|
||||
#
|
||||
# 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):
|
||||
"""Encode a segwit address."""
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user