aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_createmultisig.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/rpc_createmultisig.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/rpc_createmultisig.py')
-rwxr-xr-xtest/functional/rpc_createmultisig.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/rpc_createmultisig.py b/test/functional/rpc_createmultisig.py
index c5ec7fdecb..3c81a4a4e2 100755
--- a/test/functional/rpc_createmultisig.py
+++ b/test/functional/rpc_createmultisig.py
@@ -11,12 +11,13 @@ import os
from test_framework.authproxy import JSONRPCException
from test_framework.descriptors import descsum_create, drop_origins
-from test_framework.key import ECPubKey, ECKey, bytes_to_wif
+from test_framework.key import ECPubKey, ECKey
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_raises_rpc_error,
assert_equal,
)
+from test_framework.wallet_util import bytes_to_wif
class RpcCreateMultiSigTest(BitcoinTestFramework):
def set_test_params(self):