Move ballot classed from bisq.core.dao.presentation to consensus

This commit is contained in:
Manfred Karrer 2018-04-21 21:04:17 -05:00
parent 6551ad28df
commit faa15f3da6
No known key found for this signature in database
GPG key ID: 401250966A6B2C46
6 changed files with 12 additions and 12 deletions

View file

@ -33,8 +33,8 @@ import bisq.core.dao.consensus.period.Phase;
import bisq.core.dao.consensus.proposal.Proposal;
import bisq.core.dao.consensus.proposal.param.ChangeParamService;
import bisq.core.dao.consensus.state.StateService;
import bisq.core.dao.presentation.ballot.FilteredBallotListService;
import bisq.core.dao.presentation.ballot.MyBallotListService;
import bisq.core.dao.consensus.ballot.FilteredBallotListService;
import bisq.core.dao.consensus.ballot.MyBallotListService;
import bisq.core.locale.Res;
import javax.inject.Inject;

View file

@ -32,7 +32,7 @@ import bisq.core.dao.consensus.state.StateService;
import bisq.core.dao.consensus.state.blockchain.Tx;
import bisq.core.dao.consensus.vote.BooleanVote;
import bisq.core.dao.consensus.vote.Vote;
import bisq.core.dao.presentation.ballot.MyBallotListService;
import bisq.core.dao.consensus.ballot.MyBallotListService;
import bisq.core.locale.Res;
import org.bitcoinj.core.Transaction;

View file

@ -39,8 +39,8 @@ import bisq.core.dao.consensus.period.Phase;
import bisq.core.dao.consensus.proposal.param.ChangeParamService;
import bisq.core.dao.consensus.state.StateService;
import bisq.core.dao.consensus.vote.BooleanVote;
import bisq.core.dao.presentation.ballot.FilteredBallotListService;
import bisq.core.dao.presentation.ballot.MyBallotListService;
import bisq.core.dao.consensus.ballot.FilteredBallotListService;
import bisq.core.dao.consensus.ballot.MyBallotListService;
import bisq.core.dao.presentation.myvote.MyBlindVoteServiceFacade;
import bisq.core.locale.Res;

View file

@ -26,8 +26,8 @@ import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.dao.consensus.period.PeriodService;
import bisq.core.dao.consensus.proposal.param.ChangeParamService;
import bisq.core.dao.consensus.state.StateService;
import bisq.core.dao.presentation.ballot.FilteredBallotListService;
import bisq.core.dao.presentation.ballot.MyBallotListService;
import bisq.core.dao.consensus.ballot.FilteredBallotListService;
import bisq.core.dao.consensus.ballot.MyBallotListService;
import javax.inject.Inject;

View file

@ -37,9 +37,9 @@ import bisq.core.dao.consensus.proposal.ProposalConsensus;
import bisq.core.dao.consensus.proposal.ProposalType;
import bisq.core.dao.consensus.proposal.param.ChangeParamService;
import bisq.core.dao.consensus.state.StateService;
import bisq.core.dao.presentation.ballot.CompensationBallotFactory;
import bisq.core.dao.presentation.ballot.GenericBallotFactory;
import bisq.core.dao.presentation.ballot.MyBallotListService;
import bisq.core.dao.consensus.ballot.CompensationBallotFactory;
import bisq.core.dao.consensus.ballot.GenericBallotFactory;
import bisq.core.dao.consensus.ballot.MyBallotListService;
import bisq.core.locale.Res;
import bisq.core.provider.fee.FeeService;

View file

@ -36,8 +36,8 @@ import bisq.core.dao.consensus.proposal.param.ChangeParamService;
import bisq.core.dao.consensus.state.StateService;
import bisq.core.dao.consensus.vote.BooleanVote;
import bisq.core.dao.consensus.vote.Vote;
import bisq.core.dao.presentation.ballot.FilteredBallotListService;
import bisq.core.dao.presentation.ballot.MyBallotListService;
import bisq.core.dao.consensus.ballot.FilteredBallotListService;
import bisq.core.dao.consensus.ballot.MyBallotListService;
import bisq.core.dao.presentation.myvote.MyBlindVoteServiceFacade;
import bisq.core.locale.Res;
import bisq.core.user.Preferences;