From 1cc42aef771f1e226202157f6e472982d24d309a Mon Sep 17 00:00:00 2001 From: jmacxx <47253594+jmacxx@users.noreply.github.com> Date: Mon, 27 Mar 2023 09:55:23 -0500 Subject: [PATCH] Bug fix. --- .../core/offer/placeoffer/bisq_v1/tasks/CloneMakerFeeOco.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/bisq/core/offer/placeoffer/bisq_v1/tasks/CloneMakerFeeOco.java b/core/src/main/java/bisq/core/offer/placeoffer/bisq_v1/tasks/CloneMakerFeeOco.java index dc68b4a762..320ae75b99 100644 --- a/core/src/main/java/bisq/core/offer/placeoffer/bisq_v1/tasks/CloneMakerFeeOco.java +++ b/core/src/main/java/bisq/core/offer/placeoffer/bisq_v1/tasks/CloneMakerFeeOco.java @@ -63,7 +63,7 @@ public class CloneMakerFeeOco extends Task { // AddressEntry and TxId are not linked, so do a reverse lookup private Optional getTxIdFromAddress(BtcWalletService walletService, Address address) { - List txns = walletService.getRecentTransactions(10, false); + List txns = walletService.getRecentTransactions(0, false); for (Transaction txn : txns) { for (TransactionOutput output : txn.getOutputs()) { if (walletService.isTransactionOutputMine(output) && WalletService.isOutputScriptConvertibleToAddress(output)) {