mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Adjust to new super class params
This commit is contained in:
parent
41535fb7d4
commit
44781e1fba
2 changed files with 2 additions and 25 deletions
|
@ -26,22 +26,18 @@ import bisq.desktop.main.offer.MakerFeeProvider;
|
|||
import bisq.desktop.main.offer.MutableOfferDataModel;
|
||||
|
||||
import bisq.core.account.witness.AccountAgeWitnessService;
|
||||
import bisq.core.btc.TxFeeEstimationService;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.filter.FilterManager;
|
||||
import bisq.core.offer.CreateOfferService;
|
||||
import bisq.core.offer.OpenOfferManager;
|
||||
import bisq.core.provider.fee.FeeService;
|
||||
import bisq.core.provider.price.PriceFeedService;
|
||||
import bisq.core.trade.statistics.ReferralIdService;
|
||||
import bisq.core.user.Preferences;
|
||||
import bisq.core.user.User;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
||||
import bisq.network.p2p.P2PService;
|
||||
|
||||
import bisq.common.crypto.KeyRing;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
|
||||
/**
|
||||
|
@ -58,14 +54,10 @@ class CreateOfferDataModel extends MutableOfferDataModel {
|
|||
BsqWalletService bsqWalletService,
|
||||
Preferences preferences,
|
||||
User user,
|
||||
KeyRing keyRing,
|
||||
P2PService p2PService,
|
||||
PriceFeedService priceFeedService,
|
||||
FilterManager filterManager,
|
||||
AccountAgeWitnessService accountAgeWitnessService,
|
||||
FeeService feeService,
|
||||
TxFeeEstimationService txFeeEstimationService,
|
||||
ReferralIdService referralIdService,
|
||||
BSFormatter btcFormatter,
|
||||
MakerFeeProvider makerFeeProvider,
|
||||
Navigation navigation) {
|
||||
|
@ -75,14 +67,10 @@ class CreateOfferDataModel extends MutableOfferDataModel {
|
|||
bsqWalletService,
|
||||
preferences,
|
||||
user,
|
||||
keyRing,
|
||||
p2PService,
|
||||
priceFeedService,
|
||||
filterManager,
|
||||
accountAgeWitnessService,
|
||||
feeService,
|
||||
txFeeEstimationService,
|
||||
referralIdService,
|
||||
btcFormatter,
|
||||
makerFeeProvider,
|
||||
navigation);
|
||||
|
|
|
@ -23,13 +23,12 @@ import bisq.desktop.main.offer.MakerFeeProvider;
|
|||
import bisq.desktop.main.offer.MutableOfferDataModel;
|
||||
|
||||
import bisq.core.account.witness.AccountAgeWitnessService;
|
||||
import bisq.core.btc.TxFeeEstimationService;
|
||||
import bisq.core.btc.wallet.BsqWalletService;
|
||||
import bisq.core.btc.wallet.BtcWalletService;
|
||||
import bisq.core.btc.wallet.Restrictions;
|
||||
import bisq.core.filter.FilterManager;
|
||||
import bisq.core.locale.CurrencyUtil;
|
||||
import bisq.core.locale.TradeCurrency;
|
||||
import bisq.core.offer.CreateOfferService;
|
||||
import bisq.core.offer.Offer;
|
||||
import bisq.core.offer.OfferPayload;
|
||||
import bisq.core.offer.OpenOffer;
|
||||
|
@ -38,7 +37,6 @@ import bisq.core.payment.PaymentAccount;
|
|||
import bisq.core.proto.persistable.CorePersistenceProtoResolver;
|
||||
import bisq.core.provider.fee.FeeService;
|
||||
import bisq.core.provider.price.PriceFeedService;
|
||||
import bisq.core.trade.statistics.ReferralIdService;
|
||||
import bisq.core.user.Preferences;
|
||||
import bisq.core.user.User;
|
||||
import bisq.core.util.BSFormatter;
|
||||
|
@ -46,7 +44,6 @@ import bisq.core.util.CoinUtil;
|
|||
|
||||
import bisq.network.p2p.P2PService;
|
||||
|
||||
import bisq.common.crypto.KeyRing;
|
||||
import bisq.common.handlers.ErrorMessageHandler;
|
||||
import bisq.common.handlers.ResultHandler;
|
||||
|
||||
|
@ -67,14 +64,10 @@ class EditOfferDataModel extends MutableOfferDataModel {
|
|||
BsqWalletService bsqWalletService,
|
||||
Preferences preferences,
|
||||
User user,
|
||||
KeyRing keyRing,
|
||||
P2PService p2PService,
|
||||
PriceFeedService priceFeedService,
|
||||
FilterManager filterManager,
|
||||
AccountAgeWitnessService accountAgeWitnessService,
|
||||
FeeService feeService,
|
||||
TxFeeEstimationService txFeeEstimationService,
|
||||
ReferralIdService referralIdService,
|
||||
BSFormatter btcFormatter,
|
||||
CorePersistenceProtoResolver corePersistenceProtoResolver,
|
||||
MakerFeeProvider makerFeeProvider,
|
||||
|
@ -85,14 +78,10 @@ class EditOfferDataModel extends MutableOfferDataModel {
|
|||
bsqWalletService,
|
||||
preferences,
|
||||
user,
|
||||
keyRing,
|
||||
p2PService,
|
||||
priceFeedService,
|
||||
filterManager,
|
||||
accountAgeWitnessService,
|
||||
feeService,
|
||||
txFeeEstimationService,
|
||||
referralIdService,
|
||||
btcFormatter,
|
||||
makerFeeProvider,
|
||||
navigation);
|
||||
|
|
Loading…
Add table
Reference in a new issue