mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Move btc setup classes to setup package
This commit is contained in:
parent
c2df7cec7c
commit
f3f719a632
43 changed files with 53 additions and 42 deletions
|
@ -20,9 +20,9 @@ package bisq.core.app;
|
|||
import bisq.core.arbitration.ArbitratorManager;
|
||||
import bisq.core.btc.BtcOptionKeys;
|
||||
import bisq.core.btc.RegTestHost;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.dao.DaoOptionKeys;
|
||||
import bisq.core.dao.DaoSetup;
|
||||
import bisq.core.exceptions.BisqException;
|
||||
|
|
|
@ -26,9 +26,9 @@ import bisq.core.arbitration.DisputeManager;
|
|||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.BalanceModel;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsManager;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.dao.DaoSetup;
|
||||
import bisq.core.filter.FilterManager;
|
||||
import bisq.core.locale.Res;
|
||||
|
@ -88,8 +88,6 @@ import javafx.collections.SetChangeListener;
|
|||
|
||||
import org.spongycastle.crypto.params.KeyParameter;
|
||||
|
||||
import java.security.Security;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.Socket;
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
package bisq.core.app;
|
||||
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.WalletsManager;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.user.Preferences;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
|
|
@ -21,9 +21,9 @@ import bisq.core.app.AppOptionKeys;
|
|||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.app.BisqExecutable;
|
||||
import bisq.core.arbitration.ArbitratorManager;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.offer.OpenOfferManager;
|
||||
|
||||
import bisq.network.p2p.P2PService;
|
||||
|
|
|
@ -25,11 +25,11 @@ import bisq.core.arbitration.messages.PeerOpenedDisputeMessage;
|
|||
import bisq.core.arbitration.messages.PeerPublishedDisputePayoutTxMessage;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.exceptions.WalletException;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
import bisq.core.btc.wallet.TxBroadcastException;
|
||||
import bisq.core.btc.wallet.TxBroadcaster;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
import bisq.core.offer.OpenOfferManager;
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
package bisq.core.btc;
|
||||
|
||||
import bisq.core.app.AppOptionKeys;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqCoinSelector;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.NonBsqCoinSelector;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.provider.PriceNodeHttpClient;
|
||||
import bisq.core.provider.ProvidersRepository;
|
||||
import bisq.core.provider.fee.FeeProvider;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import org.bitcoinj.crypto.ChildNumber;
|
||||
import org.bitcoinj.crypto.DeterministicKey;
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import org.bitcoinj.crypto.ChildNumber;
|
||||
import org.bitcoinj.crypto.DeterministicKey;
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import org.bitcoinj.core.NetworkParameters;
|
||||
import org.bitcoinj.wallet.DeterministicKeyChain;
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import org.bitcoinj.crypto.ChildNumber;
|
||||
import org.bitcoinj.crypto.DeterministicKey;
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
* PircBotX. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import javax.net.SocketFactory;
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import org.bitcoinj.core.NetworkParameters;
|
||||
import org.bitcoinj.net.discovery.PeerDiscovery;
|
|
@ -15,10 +15,11 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.ProxySocketFactory;
|
||||
import bisq.core.btc.wallet.BisqRiskAnalysis;
|
||||
import bisq.core.btc.wallet.BsqWallet;
|
||||
|
||||
import bisq.common.app.Version;
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.network.Socks5MultiDiscovery;
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.BitcoinNodes.BitcoinNodesOption;
|
||||
|
@ -32,7 +32,7 @@ import org.slf4j.Logger;
|
|||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import static bisq.core.btc.BitcoinNodes.BitcoinNodesOption.CUSTOM;
|
||||
import static bisq.core.btc.wallet.WalletsSetup.DEFAULT_CONNECTIONS;
|
||||
import static bisq.core.btc.setup.WalletsSetup.DEFAULT_CONNECTIONS;
|
||||
|
||||
|
||||
class WalletSetupPreferences {
|
|
@ -15,7 +15,7 @@
|
|||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
|
@ -341,12 +341,12 @@ public class WalletsSetup {
|
|||
// Backup
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void backupWallets() {
|
||||
public void backupWallets() {
|
||||
FileUtil.rollingBackup(walletDir, btcWalletFileName, 20);
|
||||
FileUtil.rollingBackup(walletDir, BSQ_WALLET_FILE_NAME, 20);
|
||||
}
|
||||
|
||||
void clearBackups() {
|
||||
public void clearBackups() {
|
||||
try {
|
||||
FileUtil.deleteDirectory(new File(Paths.get(walletDir.getAbsolutePath(), "backup").toString()));
|
||||
} catch (IOException e) {
|
|
@ -21,6 +21,7 @@ import bisq.core.app.BisqEnvironment;
|
|||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.exceptions.WalletException;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.dao.state.BsqStateListener;
|
||||
import bisq.core.dao.state.BsqStateService;
|
||||
import bisq.core.dao.state.blockchain.Block;
|
||||
|
|
|
@ -24,6 +24,7 @@ import bisq.core.btc.InsufficientFundsException;
|
|||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.exceptions.WalletException;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.provider.fee.FeeService;
|
||||
import bisq.core.user.Preferences;
|
||||
|
||||
|
|
|
@ -25,6 +25,8 @@ import bisq.core.btc.data.RawTransactionInput;
|
|||
import bisq.core.btc.exceptions.SigningException;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.exceptions.WalletException;
|
||||
import bisq.core.btc.setup.WalletConfig;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
|
||||
import bisq.common.app.Log;
|
||||
|
|
|
@ -23,6 +23,7 @@ import bisq.core.btc.exceptions.WalletException;
|
|||
import bisq.core.btc.listeners.AddressConfidenceListener;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.listeners.TxConfidenceListener;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.provider.fee.FeeService;
|
||||
import bisq.core.user.Preferences;
|
||||
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.wallet.BtcNodeConverter.Facade;
|
||||
import bisq.core.btc.setup.BtcNodeConverter;
|
||||
import bisq.core.btc.setup.BtcNodeConverter.Facade;
|
||||
|
||||
import bisq.network.DnsLookupException;
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BtcNodeConverter;
|
||||
import bisq.core.btc.setup.PeerAddressesRepository;
|
||||
|
||||
import org.bitcoinj.core.PeerAddress;
|
||||
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.setup.WalletConfig;
|
||||
import bisq.core.btc.setup.WalletNetworkConfig;
|
||||
|
||||
import bisq.network.Socks5MultiDiscovery;
|
||||
|
||||
import org.bitcoinj.core.NetworkParameters;
|
||||
|
|
|
@ -19,6 +19,7 @@ package bisq.core.btc.wallet;
|
|||
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.WalletSetupPreferences;
|
||||
import bisq.core.user.Preferences;
|
||||
|
||||
import java.util.List;
|
||||
|
|
|
@ -33,8 +33,8 @@ import bisq.core.alert.PrivateNotificationManager;
|
|||
import bisq.core.app.AppOptionKeys;
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.app.BisqSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.payment.AccountAgeWitnessService;
|
||||
|
|
|
@ -24,7 +24,7 @@ import bisq.desktop.main.funds.deposit.DepositView;
|
|||
import bisq.desktop.main.overlays.popups.Popup;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.dao.DaoFacade;
|
||||
import bisq.core.dao.bonding.lockup.LockupType;
|
||||
import bisq.core.dao.governance.role.BondedRole;
|
||||
|
|
|
@ -27,9 +27,9 @@ import bisq.desktop.util.FormBuilder;
|
|||
import bisq.desktop.util.GUIUtil;
|
||||
import bisq.desktop.util.Layout;
|
||||
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.InsufficientBsqException;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.dao.DaoFacade;
|
||||
import bisq.core.dao.exceptions.ValidationException;
|
||||
import bisq.core.dao.governance.proposal.Proposal;
|
||||
|
|
|
@ -34,6 +34,7 @@ import bisq.desktop.util.validation.BsqValidator;
|
|||
import bisq.desktop.util.validation.BtcValidator;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqBalanceListener;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
|
@ -41,7 +42,6 @@ import bisq.core.btc.wallet.TxBroadcastException;
|
|||
import bisq.core.btc.wallet.TxBroadcaster;
|
||||
import bisq.core.btc.wallet.TxMalleabilityException;
|
||||
import bisq.core.btc.wallet.WalletsManager;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.util.BSFormatter;
|
||||
import bisq.core.util.BsqFormatter;
|
||||
|
|
|
@ -28,8 +28,8 @@ import bisq.desktop.main.overlays.windows.OfferDetailsWindow;
|
|||
import bisq.desktop.main.overlays.windows.TradeDetailsWindow;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
import bisq.core.trade.Tradable;
|
||||
|
|
|
@ -31,8 +31,8 @@ import bisq.core.btc.AddressEntryException;
|
|||
import bisq.core.btc.InsufficientFundsException;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.trade.Tradable;
|
||||
import bisq.core.trade.Trade;
|
||||
|
|
|
@ -36,7 +36,7 @@ import bisq.desktop.util.validation.SecurityDepositValidator;
|
|||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.locale.TradeCurrency;
|
||||
|
|
|
@ -27,7 +27,7 @@ import bisq.desktop.util.validation.FiatPriceValidator;
|
|||
import bisq.desktop.util.validation.FiatVolumeValidator;
|
||||
import bisq.desktop.util.validation.SecurityDepositValidator;
|
||||
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.provider.price.PriceFeedService;
|
||||
import bisq.core.user.Preferences;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
|
|
@ -27,7 +27,7 @@ import bisq.desktop.main.overlays.popups.Popup;
|
|||
import bisq.desktop.util.GUIUtil;
|
||||
import bisq.desktop.util.validation.BtcValidator;
|
||||
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.monetary.Price;
|
||||
|
|
|
@ -25,10 +25,10 @@ import bisq.desktop.util.GUIUtil;
|
|||
import bisq.desktop.util.Transitions;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.OpenOfferManager;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
|
|
@ -24,10 +24,10 @@ import bisq.desktop.util.GUIUtil;
|
|||
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.exceptions.WalletException;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
import bisq.core.btc.wallet.TxBroadcastException;
|
||||
import bisq.core.btc.wallet.TxBroadcaster;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
|
||||
import bisq.network.p2p.P2PService;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ import bisq.desktop.util.validation.FiatPriceValidator;
|
|||
import bisq.desktop.util.validation.FiatVolumeValidator;
|
||||
import bisq.desktop.util.validation.SecurityDepositValidator;
|
||||
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
import bisq.core.provider.price.PriceFeedService;
|
||||
import bisq.core.user.Preferences;
|
||||
|
|
|
@ -30,8 +30,8 @@ import bisq.desktop.util.GUIUtil;
|
|||
import bisq.core.arbitration.Dispute;
|
||||
import bisq.core.arbitration.DisputeAlreadyOpenException;
|
||||
import bisq.core.arbitration.DisputeManager;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.offer.OfferPayload;
|
||||
|
|
|
@ -30,7 +30,7 @@ import bisq.desktop.util.GUIUtil;
|
|||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.filter.Filter;
|
||||
import bisq.core.filter.FilterManager;
|
||||
import bisq.core.locale.Res;
|
||||
|
|
|
@ -22,8 +22,8 @@ import bisq.desktop.components.indicator.TxConfidenceIndicator;
|
|||
import bisq.desktop.main.overlays.popups.Popup;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.WalletsManager;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.locale.Country;
|
||||
import bisq.core.locale.CountryUtil;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
|
|
|
@ -21,7 +21,7 @@ import bisq.monitor.metrics.p2p.MonitorP2PService;
|
|||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.app.SetupUtils;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
|
||||
import bisq.network.crypto.EncryptionService;
|
||||
import bisq.network.p2p.network.SetupListener;
|
||||
|
|
|
@ -20,7 +20,7 @@ package bisq.monitor.metrics;
|
|||
import bisq.monitor.MonitorOptionKeys;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.wallet.WalletsSetup;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
|
||||
import bisq.network.p2p.NodeAddress;
|
||||
|
|
Loading…
Add table
Reference in a new issue