From fa1b63c01887adff83f16b1bbba3bd159dc51104 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Thu, 9 Dec 2021 14:39:20 +0100 Subject: test: Replace hashlib.new with named constructor --- test/functional/test_framework/messages.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/functional/test_framework/messages.py') diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py index 71ac5c5bfd..e3599cad49 100755 --- a/test/functional/test_framework/messages.py +++ b/test/functional/test_framework/messages.py @@ -64,13 +64,15 @@ FILTER_TYPE_BASIC = 0 WITNESS_SCALE_FACTOR = 4 -# Serialization/deserialization tools + def sha256(s): - return hashlib.new('sha256', s).digest() + return hashlib.sha256(s).digest() + def hash256(s): return sha256(sha256(s)) + def ser_compact_size(l): r = b"" if l < 253: -- cgit v1.2.3