Move BtcAddressValidator to core

This commit is contained in:
Manfred Karrer 2018-05-31 02:28:26 +02:00
parent ef58b17d75
commit a22b24b6d5
No known key found for this signature in database
GPG key ID: 401250966A6B2C46
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,6 @@ import bisq.desktop.main.overlays.popups.Popup;
import bisq.desktop.main.overlays.windows.WalletPasswordWindow;
import bisq.desktop.util.BSFormatter;
import bisq.desktop.util.GUIUtil;
import bisq.desktop.util.validation.BtcAddressValidator;
import bisq.core.btc.AddressEntry;
import bisq.core.btc.AddressEntryException;
@ -43,6 +42,7 @@ import bisq.core.trade.closed.ClosedTradableManager;
import bisq.core.trade.failed.FailedTradesManager;
import bisq.core.user.Preferences;
import bisq.core.util.CoinUtil;
import bisq.core.util.validation.BtcAddressValidator;
import bisq.network.p2p.P2PService;

View file

@ -22,7 +22,6 @@ import bisq.desktop.common.model.ViewModel;
import bisq.desktop.util.BSFormatter;
import bisq.desktop.util.BsqFormatter;
import bisq.desktop.util.GUIUtil;
import bisq.desktop.util.validation.BtcAddressValidator;
import bisq.core.locale.Res;
import bisq.core.offer.Offer;
@ -31,6 +30,7 @@ import bisq.core.payment.payload.PaymentMethod;
import bisq.core.trade.Contract;
import bisq.core.trade.Trade;
import bisq.core.trade.closed.ClosedTradableManager;
import bisq.core.util.validation.BtcAddressValidator;
import bisq.network.p2p.P2PService;

View file

@ -31,7 +31,6 @@ import bisq.desktop.main.portfolio.pendingtrades.steps.TradeStepView;
import bisq.desktop.util.BSFormatter;
import bisq.desktop.util.FormBuilder;
import bisq.desktop.util.Layout;
import bisq.desktop.util.validation.BtcAddressValidator;
import bisq.core.btc.AddressEntry;
import bisq.core.btc.AddressEntryException;
@ -41,6 +40,7 @@ import bisq.core.btc.wallet.BtcWalletService;
import bisq.core.locale.Res;
import bisq.core.user.DontShowAgainLookup;
import bisq.core.util.CoinUtil;
import bisq.core.util.validation.BtcAddressValidator;
import bisq.common.UserThread;
import bisq.common.app.DevEnv;