aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/wallet_util.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2020-06-10 12:10:02 -0400
committerJohn Newbery <john@johnnewbery.com>2020-06-10 12:10:02 -0400
commit3a83a01694160f2e722e1bc90a328bd569b8e109 (patch)
tree1b8118897c9c83688f975fb40ededecb948a8b82 /test/functional/test_framework/wallet_util.py
parentb216b0b71f7853d747af8b712fc250c699f3c320 (diff)
downloadbitcoin-3a83a01694160f2e722e1bc90a328bd569b8e109.tar.xz
[tests] move generate_wif_key to wallet_util.py
generate_wif_key is a wallet utility function. Move it from the EC key module to the wallet util module.
Diffstat (limited to 'test/functional/test_framework/wallet_util.py')
-rwxr-xr-xtest/functional/test_framework/wallet_util.py17
1 files changed, 13 insertions, 4 deletions
diff --git a/test/functional/test_framework/wallet_util.py b/test/functional/test_framework/wallet_util.py
index 1b6686ff45..b9c0fb6691 100755
--- a/test/functional/test_framework/wallet_util.py
+++ b/test/functional/test_framework/wallet_util.py
@@ -6,6 +6,7 @@
from collections import namedtuple
from test_framework.address import (
+ byte_to_base58,
key_to_p2pkh,
key_to_p2sh_p2wpkh,
key_to_p2wpkh,
@@ -13,10 +14,7 @@ from test_framework.address import (
script_to_p2sh_p2wsh,
script_to_p2wsh,
)
-from test_framework.key import (
- bytes_to_wif,
- ECKey,
-)
+from test_framework.key import ECKey
from test_framework.script import (
CScript,
OP_0,
@@ -120,3 +118,14 @@ def test_address(node, address, **kwargs):
raise AssertionError("key {} unexpectedly returned in getaddressinfo.".format(key))
elif addr_info[key] != value:
raise AssertionError("key {} value {} did not match expected value {}".format(key, addr_info[key], value))
+
+def bytes_to_wif(b, compressed=True):
+ if compressed:
+ b += b'\x01'
+ return byte_to_base58(b, 239)
+
+def generate_wif_key():
+ # Makes a WIF privkey for imports
+ k = ECKey()
+ k.generate()
+ return bytes_to_wif(k.get_bytes(), k.is_compressed)