mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Further refactorings move classes to other packages
This commit is contained in:
parent
6c7bf96fee
commit
16fac73b6d
@ -19,7 +19,7 @@ package bisq.core.app;
|
||||
|
||||
import bisq.core.arbitration.ArbitratorManager;
|
||||
import bisq.core.btc.BtcOptionKeys;
|
||||
import bisq.core.btc.RegTestHost;
|
||||
import bisq.core.btc.setup.RegTestHost;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.app;
|
||||
|
||||
import bisq.core.btc.BalanceModel;
|
||||
import bisq.core.btc.wallet.BalanceModel;
|
||||
import bisq.core.presentation.BalancePresentation;
|
||||
|
||||
import bisq.common.app.Version;
|
||||
|
@ -23,10 +23,10 @@ import bisq.core.alert.PrivateNotificationManager;
|
||||
import bisq.core.alert.PrivateNotificationPayload;
|
||||
import bisq.core.arbitration.ArbitratorManager;
|
||||
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.AddressEntry;
|
||||
import bisq.core.btc.wallet.BalanceModel;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletsManager;
|
||||
import bisq.core.dao.DaoSetup;
|
||||
|
@ -18,7 +18,11 @@
|
||||
package bisq.core.btc;
|
||||
|
||||
import bisq.core.app.AppOptionKeys;
|
||||
import bisq.core.btc.setup.BitcoinNodes;
|
||||
import bisq.core.btc.setup.RegTestHost;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.AddressEntryList;
|
||||
import bisq.core.btc.wallet.BalanceModel;
|
||||
import bisq.core.btc.wallet.BsqCoinSelector;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
|
||||
import bisq.network.DnsLookupException;
|
||||
import bisq.network.DnsLookupTor;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
|
||||
import org.bitcoinj.core.PeerAddress;
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
public enum RegTestHost {
|
||||
|
@ -17,9 +17,8 @@
|
||||
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.BitcoinNodes.BitcoinNodesOption;
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BitcoinNodesOption;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
import bisq.core.user.Preferences;
|
||||
|
||||
import bisq.common.util.Utilities;
|
||||
@ -31,7 +30,7 @@ import java.util.Set;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import static bisq.core.btc.BitcoinNodes.BitcoinNodesOption.CUSTOM;
|
||||
import static bisq.core.btc.setup.BitcoinNodes.BitcoinNodesOption.CUSTOM;
|
||||
import static bisq.core.btc.setup.WalletsSetup.DEFAULT_CONNECTIONS;
|
||||
|
||||
|
||||
|
@ -18,12 +18,10 @@
|
||||
package bisq.core.btc.setup;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.AddressEntryList;
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.BtcOptionKeys;
|
||||
import bisq.core.btc.RegTestHost;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntryList;
|
||||
import bisq.core.user.Preferences;
|
||||
|
||||
import bisq.network.Socks5MultiDiscovery;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.common.proto.persistable.PersistableEnvelope;
|
||||
import bisq.common.proto.persistable.PersistedDataHost;
|
@ -15,9 +15,8 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.offer.OpenOfferManager;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.TradeManager;
|
@ -17,8 +17,6 @@
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
|
||||
import org.bitcoinj.core.Coin;
|
||||
import org.bitcoinj.core.InsufficientMoneyException;
|
||||
import org.bitcoinj.core.NetworkParameters;
|
||||
|
@ -18,7 +18,6 @@
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.InsufficientBsqException;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.exceptions.WalletException;
|
||||
|
@ -17,9 +17,6 @@
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.AddressEntryList;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.AddressEntryException;
|
||||
import bisq.core.btc.exceptions.InsufficientFundsException;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.btc;
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
|
@ -18,7 +18,6 @@
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.InputsAndChangeOutput;
|
||||
import bisq.core.btc.data.PreparedDepositTxAndMakerInputs;
|
||||
import bisq.core.btc.data.RawTransactionInput;
|
||||
|
@ -19,7 +19,7 @@ package bisq.core.filter;
|
||||
|
||||
import bisq.core.app.AppOptionKeys;
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.setup.BitcoinNodes;
|
||||
import bisq.core.payment.payload.PaymentAccountPayload;
|
||||
import bisq.core.payment.payload.PaymentMethod;
|
||||
import bisq.core.provider.ProvidersRepository;
|
||||
|
@ -18,8 +18,8 @@
|
||||
package bisq.core.offer;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.monetary.Price;
|
||||
import bisq.core.monetary.Volume;
|
||||
import bisq.core.provider.fee.FeeService;
|
||||
|
@ -18,8 +18,8 @@
|
||||
package bisq.core.offer.placeoffer.tasks;
|
||||
|
||||
import bisq.core.arbitration.Arbitrator;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.exceptions.TxBroadcastException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.presentation;
|
||||
|
||||
import bisq.core.btc.BalanceModel;
|
||||
import bisq.core.btc.wallet.BalanceModel;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.core.proto;
|
||||
|
||||
import bisq.core.arbitration.DisputeResult;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.offer.AvailabilityResult;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.offer.OfferPayload;
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.core.proto.persistable;
|
||||
|
||||
import bisq.core.arbitration.DisputeList;
|
||||
import bisq.core.btc.AddressEntryList;
|
||||
import bisq.core.btc.wallet.AddressEntryList;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.dao.governance.ballot.BallotList;
|
||||
import bisq.core.dao.governance.blindvote.MyBlindVoteList;
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.core.setup;
|
||||
|
||||
import bisq.core.arbitration.DisputeManager;
|
||||
import bisq.core.btc.AddressEntryList;
|
||||
import bisq.core.btc.wallet.AddressEntryList;
|
||||
import bisq.core.dao.DaoOptionKeys;
|
||||
import bisq.core.dao.governance.ballot.BallotListService;
|
||||
import bisq.core.dao.governance.blindvote.MyBlindVoteListService;
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package bisq.core.trade;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.exceptions.AddressEntryException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.messages.PayoutTxPublishedMessage;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.messages.CounterCurrencyTransferStartedMessage;
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.AddressConfidenceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.protocol.tasks.TradeTask;
|
||||
|
@ -17,9 +17,9 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer_as_maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.PreparedDepositTxAndMakerInputs;
|
||||
import bisq.core.btc.data.RawTransactionInput;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer_as_maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.protocol.tasks.TradeTask;
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer_as_taker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.InputsAndChangeOutput;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.protocol.tasks.TradeTask;
|
||||
|
@ -17,9 +17,9 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.buyer_as_taker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.RawTransactionInput;
|
||||
import bisq.core.btc.exceptions.TxBroadcastException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TxBroadcaster;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.payment.payload.PaymentAccountPayload;
|
||||
import bisq.core.trade.BuyerAsMakerTrade;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.messages.DepositTxPublishedMessage;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.payment.payload.PaymentAccountPayload;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.AddressConfidenceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.protocol.tasks.TradeTask;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.seller;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -17,9 +17,9 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.seller_as_maker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.PreparedDepositTxAndMakerInputs;
|
||||
import bisq.core.btc.data.RawTransactionInput;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.seller_as_taker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.InputsAndChangeOutput;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.trade.Trade;
|
||||
import bisq.core.trade.protocol.tasks.TradeTask;
|
||||
|
@ -17,9 +17,9 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.seller_as_taker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.data.RawTransactionInput;
|
||||
import bisq.core.btc.exceptions.TxBroadcastException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TxBroadcaster;
|
||||
import bisq.core.trade.Contract;
|
||||
|
@ -18,8 +18,8 @@
|
||||
package bisq.core.trade.protocol.tasks.taker;
|
||||
|
||||
import bisq.core.arbitration.Arbitrator;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.exceptions.TxBroadcastException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.taker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.payment.payload.PaymentAccountPayload;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.trade.protocol.tasks.taker;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.payment.payload.PaymentAccountPayload;
|
||||
import bisq.core.trade.Contract;
|
||||
|
@ -20,9 +20,9 @@ package bisq.core.user;
|
||||
import bisq.core.app.AppOptionKeys;
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.BaseCurrencyNetwork;
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.BtcOptionKeys;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.setup.BitcoinNodes;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Country;
|
||||
import bisq.core.locale.CountryUtil;
|
||||
import bisq.core.locale.CryptoCurrency;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.user;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Country;
|
||||
import bisq.core.locale.CryptoCurrency;
|
||||
import bisq.core.locale.FiatCurrency;
|
||||
|
@ -17,6 +17,8 @@
|
||||
|
||||
package bisq.core.btc;
|
||||
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
|
||||
import org.bitcoinj.core.Coin;
|
||||
|
||||
import org.junit.Test;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BtcNodeConverter;
|
||||
import bisq.core.btc.setup.BtcNodeConverter.Facade;
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BtcNodeConverter;
|
||||
import bisq.core.btc.setup.PeerAddressesRepository;
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package bisq.core.btc.wallet;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.BitcoinNodes;
|
||||
import bisq.core.btc.setup.BitcoinNodes.BtcNode;
|
||||
import bisq.core.btc.setup.WalletSetupPreferences;
|
||||
import bisq.core.user.Preferences;
|
||||
|
||||
@ -31,8 +31,8 @@ import org.powermock.modules.junit4.PowerMockRunner;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import static bisq.core.btc.BitcoinNodes.BitcoinNodesOption.CUSTOM;
|
||||
import static bisq.core.btc.BitcoinNodes.BitcoinNodesOption.PUBLIC;
|
||||
import static bisq.core.btc.setup.BitcoinNodes.BitcoinNodesOption.CUSTOM;
|
||||
import static bisq.core.btc.setup.BitcoinNodes.BitcoinNodesOption.PUBLIC;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.mockito.Mockito.mock;
|
||||
|
@ -21,7 +21,7 @@ import bisq.desktop.common.model.ActivatableViewModel;
|
||||
|
||||
import bisq.core.arbitration.Arbitrator;
|
||||
import bisq.core.arbitration.ArbitratorManager;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.LanguageUtil;
|
||||
import bisq.core.user.User;
|
||||
|
@ -26,9 +26,9 @@ import bisq.desktop.util.FormBuilder;
|
||||
import bisq.desktop.util.Layout;
|
||||
import bisq.desktop.util.validation.BsqValidator;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.listeners.BsqBalanceListener;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.dao.DaoFacade;
|
||||
import bisq.core.dao.bonding.BondingConsensus;
|
||||
import bisq.core.dao.bonding.lockup.LockupType;
|
||||
|
@ -33,13 +33,13 @@ import bisq.desktop.util.validation.BsqAddressValidator;
|
||||
import bisq.desktop.util.validation.BsqValidator;
|
||||
import bisq.desktop.util.validation.BtcValidator;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.TxBroadcastException;
|
||||
import bisq.core.btc.exceptions.TxMalleabilityException;
|
||||
import bisq.core.btc.listeners.BsqBalanceListener;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.btc.wallet.TxBroadcaster;
|
||||
import bisq.core.btc.wallet.WalletsManager;
|
||||
import bisq.core.locale.Res;
|
||||
|
@ -20,9 +20,9 @@ package bisq.desktop.main.funds.deposit;
|
||||
import bisq.desktop.components.indicator.TxConfidenceIndicator;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.listeners.TxConfidenceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
@ -30,8 +30,8 @@ import bisq.desktop.main.overlays.windows.QRCodeWindow;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
import bisq.desktop.util.Layout;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.provider.fee.FeeService;
|
||||
|
@ -19,8 +19,8 @@ package bisq.desktop.main.funds.locked;
|
||||
|
||||
import bisq.desktop.components.AutoTooltipLabel;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.WalletService;
|
||||
import bisq.core.trade.Tradable;
|
||||
|
@ -25,8 +25,8 @@ import bisq.desktop.main.overlays.windows.OfferDetailsWindow;
|
||||
import bisq.desktop.main.overlays.windows.TradeDetailsWindow;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
|
@ -19,8 +19,8 @@ package bisq.desktop.main.funds.reserved;
|
||||
|
||||
import bisq.desktop.components.AutoTooltipLabel;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
import bisq.core.trade.Tradable;
|
||||
|
@ -25,8 +25,8 @@ import bisq.desktop.main.overlays.windows.OfferDetailsWindow;
|
||||
import bisq.desktop.main.overlays.windows.TradeDetailsWindow;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
|
@ -19,8 +19,8 @@ package bisq.desktop.main.funds.withdrawal;
|
||||
|
||||
import bisq.desktop.components.AutoTooltipLabel;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
@ -26,13 +26,13 @@ import bisq.desktop.main.overlays.popups.Popup;
|
||||
import bisq.desktop.main.overlays.windows.WalletPasswordWindow;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.AddressEntryException;
|
||||
import bisq.core.btc.exceptions.InsufficientFundsException;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.trade.Tradable;
|
||||
import bisq.core.trade.Trade;
|
||||
|
@ -19,12 +19,12 @@ package bisq.desktop.main.offer;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.arbitration.Arbitrator;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.listeners.BsqBalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
import bisq.core.filter.FilterManager;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
|
@ -35,8 +35,8 @@ import bisq.desktop.util.validation.MonetaryValidator;
|
||||
import bisq.desktop.util.validation.SecurityDepositValidator;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.locale.TradeCurrency;
|
||||
|
@ -19,7 +19,7 @@ package bisq.desktop.main.offer;
|
||||
|
||||
import bisq.desktop.common.model.ActivatableDataModel;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
|
||||
import org.bitcoinj.core.Coin;
|
||||
|
@ -22,11 +22,11 @@ import bisq.desktop.main.overlays.popups.Popup;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.arbitration.Arbitrator;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.listeners.BalanceListener;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
import bisq.core.filter.FilterManager;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
|
@ -27,8 +27,8 @@ import bisq.desktop.util.Layout;
|
||||
import bisq.core.arbitration.Dispute;
|
||||
import bisq.core.arbitration.DisputeManager;
|
||||
import bisq.core.arbitration.DisputeResult;
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.exceptions.TransactionVerificationException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.TradeWalletService;
|
||||
import bisq.core.locale.Res;
|
||||
|
@ -24,10 +24,10 @@ import bisq.desktop.main.overlays.popups.Popup;
|
||||
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.Restrictions;
|
||||
import bisq.core.btc.wallet.WalletService;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.OpenOfferManager;
|
||||
|
@ -32,11 +32,11 @@ import bisq.desktop.main.portfolio.pendingtrades.steps.TradeStepView;
|
||||
import bisq.desktop.util.FormBuilder;
|
||||
import bisq.desktop.util.Layout;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.exceptions.AddressEntryException;
|
||||
import bisq.core.btc.exceptions.InsufficientFundsException;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.user.DontShowAgainLookup;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
@ -29,7 +29,7 @@ import bisq.desktop.main.overlays.windows.TorNetworkSettingsWindow;
|
||||
import bisq.desktop.util.GUIUtil;
|
||||
|
||||
import bisq.core.app.BisqEnvironment;
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.setup.BitcoinNodes;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.filter.Filter;
|
||||
import bisq.core.filter.FilterManager;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.desktop.util.validation;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.util.BsqFormatter;
|
||||
import bisq.core.util.CoinUtil;
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.desktop.util.validation;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.desktop.util.validation;
|
||||
|
||||
import bisq.core.btc.Restrictions;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
||||
|
@ -22,7 +22,7 @@ import bisq.desktop.util.validation.BtcValidator;
|
||||
import bisq.desktop.util.validation.FiatPriceValidator;
|
||||
import bisq.desktop.util.validation.SecurityDepositValidator;
|
||||
|
||||
import bisq.core.btc.AddressEntry;
|
||||
import bisq.core.btc.wallet.AddressEntry;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.locale.CryptoCurrency;
|
||||
|
@ -19,7 +19,7 @@ package bisq.monitor.metrics;
|
||||
|
||||
import bisq.monitor.MonitorOptionKeys;
|
||||
|
||||
import bisq.core.btc.BitcoinNodes;
|
||||
import bisq.core.btc.setup.BitcoinNodes;
|
||||
import bisq.core.btc.setup.WalletsSetup;
|
||||
import bisq.core.locale.Res;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user