This commit is contained in:
jmacxx 2023-03-27 09:55:23 -05:00 committed by HenrikJannsen
parent 4f08f9f383
commit 1cc42aef77
No known key found for this signature in database
GPG Key ID: 02AA2BAE387C8307

View File

@ -63,7 +63,7 @@ public class CloneMakerFeeOco extends Task<PlaceOfferModel> {
// AddressEntry and TxId are not linked, so do a reverse lookup
private Optional<String> getTxIdFromAddress(BtcWalletService walletService, Address address) {
List<Transaction> txns = walletService.getRecentTransactions(10, false);
List<Transaction> txns = walletService.getRecentTransactions(0, false);
for (Transaction txn : txns) {
for (TransactionOutput output : txn.getOutputs()) {
if (walletService.isTransactionOutputMine(output) && WalletService.isOutputScriptConvertibleToAddress(output)) {