diff --git a/tests/full_node/test_blockchain_transactions.py b/tests/full_node/test_blockchain_transactions.py index 3428a90a26..61c16439d4 100644 --- a/tests/full_node/test_blockchain_transactions.py +++ b/tests/full_node/test_blockchain_transactions.py @@ -18,7 +18,7 @@ from src.types.spend_bundle import SpendBundle from src.util.errors import Err from src.util.ints import uint64 from tests.setup_nodes import setup_two_nodes, test_constants, bt -from tests.wallet_tools import WalletTool +from src.util.wallet_tools import WalletTool @pytest.fixture(scope="module") diff --git a/tests/full_node/test_full_node.py b/tests/full_node/test_full_node.py index dd7023d7cd..b31e36480a 100644 --- a/tests/full_node/test_full_node.py +++ b/tests/full_node/test_full_node.py @@ -25,7 +25,7 @@ from src.full_node.full_node import FullNode from src.types.condition_var_pair import ConditionVarPair from src.types.condition_opcodes import ConditionOpcode from tests.setup_nodes import setup_two_nodes, test_constants, bt -from tests.wallet_tools import WalletTool +from src.util.wallet_tools import WalletTool from src.types.mempool_inclusion_status import MempoolInclusionStatus from src.types.coin import hash_coin_list from src.util.config import load_config diff --git a/tests/full_node/test_mempool.py b/tests/full_node/test_mempool.py index f979f34bfe..1f6d598f6d 100644 --- a/tests/full_node/test_mempool.py +++ b/tests/full_node/test_mempool.py @@ -20,7 +20,7 @@ from src.util.condition_tools import ( ) from src.util.ints import uint64 from tests.setup_nodes import setup_two_nodes, test_constants, bt -from tests.wallet_tools import WalletTool +from src.util.wallet_tools import WalletTool @pytest.fixture(scope="module") diff --git a/tests/test_cost_calculation.py b/tests/test_cost_calculation.py index 969f467213..966ef96237 100644 --- a/tests/test_cost_calculation.py +++ b/tests/test_cost_calculation.py @@ -6,7 +6,7 @@ from src.util.bundle_tools import best_solution_program from src.util.cost_calculator import calculate_cost_of_program from src.util.mempool_check_conditions import get_name_puzzle_conditions from tests.setup_nodes import test_constants, bt -from tests.wallet_tools import WalletTool +from src.util.wallet_tools import WalletTool @pytest.fixture(scope="module") diff --git a/tests/test_merkle_set.py b/tests/test_merkle_set.py index 3fc401ad1e..0b090c4b1e 100644 --- a/tests/test_merkle_set.py +++ b/tests/test_merkle_set.py @@ -4,7 +4,7 @@ import pytest from src.util.merkle_set import MerkleSet, confirm_included_already_hashed from tests.setup_nodes import test_constants, bt -from tests.wallet_tools import WalletTool +from src.util.wallet_tools import WalletTool @pytest.fixture(scope="module") diff --git a/tests/wallet/test_wallet_sync.py b/tests/wallet/test_wallet_sync.py index 84a9db6314..4afc6a633d 100644 --- a/tests/wallet/test_wallet_sync.py +++ b/tests/wallet/test_wallet_sync.py @@ -8,7 +8,7 @@ from src.util.ints import uint16, uint64, uint32 from tests.setup_nodes import setup_node_and_wallet, test_constants, bt from src.types.spend_bundle import SpendBundle from src.util.bundle_tools import best_solution_program -from tests.wallet_tools import WalletTool +from src.util.wallet_tools import WalletTool from src.types.coin import Coin from src.consensus.coinbase import create_coinbase_coin from tests.time_out_assert import time_out_assert