From a760aa14a974cc18fa70a91f87a96a3db395a624 Mon Sep 17 00:00:00 2001 From: John Newbery Date: Wed, 30 Oct 2019 10:27:25 -0400 Subject: [PATCH] [tests] remove mpi2vch() function All it does is reverse the bytes order. --- test/functional/test_framework/bignum.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/functional/test_framework/bignum.py b/test/functional/test_framework/bignum.py index f50c648c42..ed440a2cd8 100644 --- a/test/functional/test_framework/bignum.py +++ b/test/functional/test_framework/bignum.py @@ -44,10 +44,6 @@ def bn2mpi(v): v_bin[0] |= 0x80 return ext + v_bin -def mpi2vch(s): - """Convert MPI format to bitcoin-specific little endian format.""" - return s[::-1] # reverse string, converting BE->LE - def bn2vch(v): """Convert number to bitcoin-specific little endian format.""" - return bytes(mpi2vch(bn2mpi(v))) + return bytes(reversed(bn2mpi(v)))