mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-30 13:50:51 +02:00
[tests] sort imports in rpc_createmultisig.py
This commit is contained in:
@@ -3,22 +3,21 @@
|
|||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Test multisig RPCs"""
|
"""Test multisig RPCs"""
|
||||||
|
|
||||||
from test_framework.authproxy import JSONRPCException
|
|
||||||
from test_framework.descriptors import descsum_create, drop_origins
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
|
||||||
from test_framework.util import (
|
|
||||||
assert_raises_rpc_error,
|
|
||||||
assert_equal,
|
|
||||||
)
|
|
||||||
from test_framework.key import ECPubKey, ECKey, bytes_to_wif
|
|
||||||
|
|
||||||
import binascii
|
import binascii
|
||||||
import decimal
|
import decimal
|
||||||
import itertools
|
import itertools
|
||||||
import json
|
import json
|
||||||
import os
|
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.test_framework import BitcoinTestFramework
|
||||||
|
from test_framework.util import (
|
||||||
|
assert_raises_rpc_error,
|
||||||
|
assert_equal,
|
||||||
|
)
|
||||||
|
|
||||||
class RpcCreateMultiSigTest(BitcoinTestFramework):
|
class RpcCreateMultiSigTest(BitcoinTestFramework):
|
||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
self.setup_clean_chain = True
|
self.setup_clean_chain = True
|
||||||
|
Reference in New Issue
Block a user