mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-13 08:55:31 -04:00
support scheduling offers with locked funds
This commit is contained in:
parent
2da77de41b
commit
fa15612586
25 changed files with 386 additions and 201 deletions
|
@ -24,7 +24,7 @@ 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.MakerReservesTradeFunds;
|
||||
import bisq.core.offer.placeoffer.tasks.MakerReservesOfferFunds;
|
||||
import bisq.core.offer.placeoffer.tasks.ValidateOffer;
|
||||
import bisq.core.trade.protocol.tasks.ApplyFilter;
|
||||
import bisq.core.trade.protocol.tasks.VerifyPeersAccountAgeWitness;
|
||||
|
@ -109,7 +109,7 @@ public class DebugView extends InitializableView<GridPane, Void> {
|
|||
addGroup("PlaceOfferProtocol",
|
||||
FXCollections.observableArrayList(Arrays.asList(
|
||||
ValidateOffer.class,
|
||||
MakerReservesTradeFunds.class,
|
||||
MakerReservesOfferFunds.class,
|
||||
AddToOfferBook.class)
|
||||
));
|
||||
|
||||
|
|
|
@ -315,7 +315,6 @@ public abstract class MutableOfferDataModel extends OfferDataModel {
|
|||
|
||||
void onPlaceOffer(Offer offer, TransactionResultHandler resultHandler) {
|
||||
openOfferManager.placeOffer(offer,
|
||||
buyerSecurityDeposit.get(),
|
||||
useSavingsWallet,
|
||||
triggerPrice,
|
||||
resultHandler,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue