Refactoring: move vo one level up

- move bisq.core.dao.state.blockchain.vo to bisq.core.dao.state.blockchain
This commit is contained in:
Manfred Karrer 2018-04-13 09:46:11 -05:00
parent 7f1b0ebe09
commit 21fe0a03b5
No known key found for this signature in database
GPG key ID: 401250966A6B2C46
6 changed files with 12 additions and 12 deletions

View file

@ -24,8 +24,8 @@ import bisq.desktop.util.BsqFormatter;
import bisq.core.btc.listeners.TxConfidenceListener; import bisq.core.btc.listeners.TxConfidenceListener;
import bisq.core.btc.wallet.BsqWalletService; import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.dao.state.StateService; import bisq.core.dao.state.StateService;
import bisq.core.dao.state.blockchain.vo.BsqBlock; import bisq.core.dao.state.blockchain.BsqBlock;
import bisq.core.dao.state.blockchain.vo.Tx; import bisq.core.dao.state.blockchain.Tx;
import bisq.core.dao.vote.BooleanVote; import bisq.core.dao.vote.BooleanVote;
import bisq.core.dao.vote.PeriodService; import bisq.core.dao.vote.PeriodService;
import bisq.core.dao.vote.Vote; import bisq.core.dao.vote.Vote;

View file

@ -23,9 +23,9 @@ import bisq.desktop.util.BsqFormatter;
import bisq.core.btc.listeners.TxConfidenceListener; import bisq.core.btc.listeners.TxConfidenceListener;
import bisq.core.btc.wallet.BsqWalletService; import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.dao.state.StateService; import bisq.core.dao.state.StateService;
import bisq.core.dao.state.blockchain.vo.BsqBlock; import bisq.core.dao.state.blockchain.BsqBlock;
import bisq.core.dao.state.blockchain.vo.Tx; import bisq.core.dao.state.blockchain.Tx;
import bisq.core.dao.state.blockchain.vo.TxOutput; import bisq.core.dao.state.blockchain.TxOutput;
import bisq.core.dao.vote.myvote.MyVote; import bisq.core.dao.vote.myvote.MyVote;
import bisq.core.locale.Res; import bisq.core.locale.Res;

View file

@ -27,7 +27,7 @@ import bisq.desktop.util.GUIUtil;
import bisq.desktop.util.Layout; import bisq.desktop.util.Layout;
import bisq.core.dao.state.StateService; import bisq.core.dao.state.StateService;
import bisq.core.dao.state.blockchain.vo.BsqBlock; import bisq.core.dao.state.blockchain.BsqBlock;
import bisq.core.locale.Res; import bisq.core.locale.Res;
import bisq.core.monetary.Altcoin; import bisq.core.monetary.Altcoin;
import bisq.core.monetary.Price; import bisq.core.monetary.Price;

View file

@ -26,8 +26,8 @@ import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.btc.wallet.BtcWalletService; import bisq.core.btc.wallet.BtcWalletService;
import bisq.core.btc.wallet.WalletService; import bisq.core.btc.wallet.WalletService;
import bisq.core.dao.state.StateService; import bisq.core.dao.state.StateService;
import bisq.core.dao.state.blockchain.vo.Tx; import bisq.core.dao.state.blockchain.Tx;
import bisq.core.dao.state.blockchain.vo.TxType; import bisq.core.dao.state.blockchain.TxType;
import bisq.core.locale.Res; import bisq.core.locale.Res;
import org.bitcoinj.core.Coin; import org.bitcoinj.core.Coin;

View file

@ -33,9 +33,9 @@ import bisq.core.btc.wallet.BsqBalanceListener;
import bisq.core.btc.wallet.BsqWalletService; import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.btc.wallet.BtcWalletService; import bisq.core.btc.wallet.BtcWalletService;
import bisq.core.dao.state.StateService; import bisq.core.dao.state.StateService;
import bisq.core.dao.state.blockchain.vo.BsqBlock; import bisq.core.dao.state.blockchain.BsqBlock;
import bisq.core.dao.state.blockchain.vo.Tx; import bisq.core.dao.state.blockchain.Tx;
import bisq.core.dao.state.blockchain.vo.TxType; import bisq.core.dao.state.blockchain.TxType;
import bisq.core.locale.Res; import bisq.core.locale.Res;
import bisq.core.user.Preferences; import bisq.core.user.Preferences;

View file

@ -27,7 +27,7 @@ import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.btc.wallet.BtcWalletService; import bisq.core.btc.wallet.BtcWalletService;
import bisq.core.btc.wallet.WalletService; import bisq.core.btc.wallet.WalletService;
import bisq.core.dao.state.StateService; import bisq.core.dao.state.StateService;
import bisq.core.dao.state.blockchain.vo.TxType; import bisq.core.dao.state.blockchain.TxType;
import bisq.core.locale.Res; import bisq.core.locale.Res;
import bisq.core.offer.Offer; import bisq.core.offer.Offer;
import bisq.core.offer.OpenOffer; import bisq.core.offer.OpenOffer;