mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Move content of bisq.core.offer.placeoffer package into package bisq.core.offer.placeoffer.bisq_v1
This commit is contained in:
parent
fa9896d472
commit
aa02ac8a6d
@ -32,8 +32,8 @@ import bisq.core.offer.availability.messages.OfferAvailabilityResponse;
|
||||
import bisq.core.offer.bisq_v1.CreateOfferService;
|
||||
import bisq.core.offer.bisq_v1.MarketPriceNotAvailableException;
|
||||
import bisq.core.offer.bisq_v1.OfferPayload;
|
||||
import bisq.core.offer.placeoffer.PlaceOfferModel;
|
||||
import bisq.core.offer.placeoffer.PlaceOfferProtocol;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.PlaceOfferModel;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.PlaceOfferProtocol;
|
||||
import bisq.core.provider.price.PriceFeedService;
|
||||
import bisq.core.support.dispute.arbitration.arbitrator.ArbitratorManager;
|
||||
import bisq.core.support.dispute.mediation.mediator.MediatorManager;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.offer.placeoffer;
|
||||
package bisq.core.offer.placeoffer.bisq_v1;
|
||||
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
@ -15,12 +15,12 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.offer.placeoffer;
|
||||
package bisq.core.offer.placeoffer.bisq_v1;
|
||||
|
||||
import bisq.core.offer.placeoffer.tasks.AddToOfferBook;
|
||||
import bisq.core.offer.placeoffer.tasks.CheckNumberOfUnconfirmedTransactions;
|
||||
import bisq.core.offer.placeoffer.tasks.CreateMakerFeeTx;
|
||||
import bisq.core.offer.placeoffer.tasks.ValidateOffer;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.AddToOfferBook;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.CheckNumberOfUnconfirmedTransactions;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.CreateMakerFeeTx;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.ValidateOffer;
|
||||
import bisq.core.trade.handlers.TransactionResultHandler;
|
||||
|
||||
import bisq.common.handlers.ErrorMessageHandler;
|
@ -15,9 +15,9 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.offer.placeoffer.tasks;
|
||||
package bisq.core.offer.placeoffer.bisq_v1.tasks;
|
||||
|
||||
import bisq.core.offer.placeoffer.PlaceOfferModel;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.PlaceOfferModel;
|
||||
|
||||
import bisq.common.taskrunner.Task;
|
||||
import bisq.common.taskrunner.TaskRunner;
|
@ -1,7 +1,7 @@
|
||||
package bisq.core.offer.placeoffer.tasks;
|
||||
package bisq.core.offer.placeoffer.bisq_v1.tasks;
|
||||
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.offer.placeoffer.PlaceOfferModel;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.PlaceOfferModel;
|
||||
|
||||
import bisq.common.taskrunner.Task;
|
||||
import bisq.common.taskrunner.TaskRunner;
|
@ -15,7 +15,7 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.offer.placeoffer.tasks;
|
||||
package bisq.core.offer.placeoffer.bisq_v1.tasks;
|
||||
|
||||
import bisq.core.btc.exceptions.TxBroadcastException;
|
||||
import bisq.core.btc.model.AddressEntry;
|
||||
@ -27,7 +27,7 @@ import bisq.core.btc.wallet.WalletService;
|
||||
import bisq.core.dao.exceptions.DaoDisabledException;
|
||||
import bisq.core.dao.state.model.blockchain.TxType;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.offer.placeoffer.PlaceOfferModel;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.PlaceOfferModel;
|
||||
import bisq.core.util.FeeReceiverSelector;
|
||||
|
||||
import bisq.common.UserThread;
|
@ -15,10 +15,10 @@
|
||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.core.offer.placeoffer.tasks;
|
||||
package bisq.core.offer.placeoffer.bisq_v1.tasks;
|
||||
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.offer.placeoffer.PlaceOfferModel;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.PlaceOfferModel;
|
||||
import bisq.core.trade.messages.TradeMessage;
|
||||
|
||||
import bisq.common.taskrunner.Task;
|
@ -23,9 +23,9 @@ import bisq.desktop.components.TitledGroupBg;
|
||||
|
||||
import bisq.core.offer.availability.tasks.ProcessOfferAvailabilityResponse;
|
||||
import bisq.core.offer.availability.tasks.SendOfferAvailabilityRequest;
|
||||
import bisq.core.offer.placeoffer.tasks.AddToOfferBook;
|
||||
import bisq.core.offer.placeoffer.tasks.CreateMakerFeeTx;
|
||||
import bisq.core.offer.placeoffer.tasks.ValidateOffer;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.AddToOfferBook;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.CreateMakerFeeTx;
|
||||
import bisq.core.offer.placeoffer.bisq_v1.tasks.ValidateOffer;
|
||||
import bisq.core.trade.protocol.tasks.ApplyFilter;
|
||||
import bisq.core.trade.protocol.tasks.VerifyPeersAccountAgeWitness;
|
||||
import bisq.core.trade.protocol.tasks.buyer.BuyerProcessDelayedPayoutTxSignatureRequest;
|
||||
|
Loading…
Reference in New Issue
Block a user