From 06f7358f1fe81d74e5681ee9c2e83be01ae22386 Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Tue, 11 Feb 2020 19:16:31 +0000 Subject: [PATCH] fix flake errors after #504 --- jmclient/jmclient/taker_utils.py | 1 - jmclient/jmclient/wallet_utils.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/jmclient/jmclient/taker_utils.py b/jmclient/jmclient/taker_utils.py index 0e85f3a..e6fe31b 100644 --- a/jmclient/jmclient/taker_utils.py +++ b/jmclient/jmclient/taker_utils.py @@ -7,7 +7,6 @@ import time import numbers from jmbase import get_log, jmprint from .configure import jm_single, validate_address -from .jsonrpc import JsonRpcError from .schedule import human_readable_schedule_entry, tweak_tumble_schedule,\ schedule_to_text from .wallet import BaseWallet, estimate_tx_fee, compute_tx_locktime diff --git a/jmclient/jmclient/wallet_utils.py b/jmclient/jmclient/wallet_utils.py index eec8d5b..6f67582 100644 --- a/jmclient/jmclient/wallet_utils.py +++ b/jmclient/jmclient/wallet_utils.py @@ -10,7 +10,7 @@ from numbers import Integral from collections import Counter from itertools import islice from jmclient import (get_network, WALLET_IMPLEMENTATIONS, Storage, podle, - jm_single, BitcoinCoreInterface, JsonRpcError, WalletError, + jm_single, BitcoinCoreInterface, WalletError, VolatileStorage, StoragePasswordError, is_segwit_mode, SegwitLegacyWallet, LegacyWallet, SegwitWallet, is_native_segwit_mode, load_program_config, add_base_options, check_regtest)