aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/spend.h
diff options
context:
space:
mode:
authorfurszy <matiasfurszyfer@protonmail.com>2022-07-20 13:24:05 -0300
committerfurszy <matiasfurszyfer@protonmail.com>2023-01-03 17:25:36 -0300
commita2ac6f9582c4c996fa36e4801fa0aac756235754 (patch)
treedcc456eea53dead19d97220334cd5a9b422b7067 /src/wallet/spend.h
parentb3f4e827378e010cd2a5d1b876d01db52c054d26 (diff)
downloadbitcoin-a2ac6f9582c4c996fa36e4801fa0aac756235754.tar.xz
wallet: unify FindNonChangeParentOutput functions
The function is only used in ListCoins.
Diffstat (limited to 'src/wallet/spend.h')
-rw-r--r--src/wallet/spend.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wallet/spend.h b/src/wallet/spend.h
index 281a6ca9e8..14a057b1ea 100644
--- a/src/wallet/spend.h
+++ b/src/wallet/spend.h
@@ -99,7 +99,6 @@ CAmount GetAvailableBalance(const CWallet& wallet, const CCoinControl* coinContr
/**
* Find non-change parent output.
*/
-const CTxOut& FindNonChangeParentOutput(const CWallet& wallet, const CTransaction& tx, int output) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet);
const CTxOut& FindNonChangeParentOutput(const CWallet& wallet, const COutPoint& outpoint) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet);
/**