File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 3
3
# Distributed under the MIT software license, see the accompanying
4
4
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
"""Test multisig RPCs"""
6
+ import binascii
7
+ import decimal
8
+ import itertools
9
+ import json
10
+ import os
6
11
7
12
from test_framework .authproxy import JSONRPCException
8
13
from test_framework .descriptors import descsum_create , drop_origins
14
+ from test_framework .key import ECPubKey , ECKey , bytes_to_wif
9
15
from test_framework .test_framework import BitcoinTestFramework
10
16
from test_framework .util import (
11
17
assert_raises_rpc_error ,
12
18
assert_equal ,
13
19
)
14
- from test_framework .key import ECPubKey , ECKey , bytes_to_wif
15
-
16
- import binascii
17
- import decimal
18
- import itertools
19
- import json
20
- import os
21
20
22
21
class RpcCreateMultiSigTest (BitcoinTestFramework ):
23
22
def set_test_params (self ):
You can’t perform that action at this time.
0 commit comments