aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/util.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-02-20 18:13:43 -0500
committerMarcoFalke <falke.marco@gmail.com>2019-03-02 10:40:23 -0500
commitfab5a1e0f492f920270c661954802749dfac5fa1 (patch)
tree41178ec05f2952b36a42cac3525a8bd7e541c061 /test/functional/test_framework/util.py
parentfa6bf21f5ef8b27e8525cabba9738f8e1f246bf5 (diff)
downloadbitcoin-fab5a1e0f492f920270c661954802749dfac5fa1.tar.xz
build: Require python 3.5
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r--test/functional/test_framework/util.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py
index fb2ee8e90c..f7f1b277e4 100644
--- a/test/functional/test_framework/util.py
+++ b/test/functional/test_framework/util.py
@@ -182,9 +182,6 @@ def check_json_precision():
def count_bytes(hex_string):
return len(bytearray.fromhex(hex_string))
-def b_2_x(byte_str):
- return byte_str.hex()
-
def hash256(byte_str):
sha256 = hashlib.sha256()
sha256.update(byte_str)