Further refactorings move classes to other packages

This commit is contained in:
Manfred Karrer 2018-09-23 14:56:46 -05:00
parent 6c7bf96fee
commit 16fac73b6d
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
74 changed files with 87 additions and 92 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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 {

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -17,6 +17,8 @@
package bisq.core.btc;
import bisq.core.btc.wallet.Restrictions;
import org.bitcoinj.core.Coin;
import org.junit.Test;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;