diff options
author | Gregory Sanders <gsanders87@gmail.com> | 2021-10-05 21:17:22 +0800 |
---|---|---|
committer | Gregory Sanders <gsanders87@gmail.com> | 2021-10-06 06:55:34 +0800 |
commit | 43568782c23185a0599a6e60d61db4716da1cda1 (patch) | |
tree | 04deda211ec05b5b160aaf1169a4fcfd0a147830 /src/wallet/coincontrol.h | |
parent | c79d9fb2f6e5f47dcb0ac45d66a542dad0c8e7e4 (diff) |
External input fund support cleanups
Synchronize error checking for external inputs
Rename external output Select to SelectExternal
Const FundTransaction variables
Diffstat (limited to 'src/wallet/coincontrol.h')
-rw-r--r-- | src/wallet/coincontrol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/coincontrol.h b/src/wallet/coincontrol.h index c989512d3e..edd81e590f 100644 --- a/src/wallet/coincontrol.h +++ b/src/wallet/coincontrol.h @@ -93,7 +93,7 @@ public: setSelected.insert(output); } - void Select(const COutPoint& outpoint, const CTxOut& txout) + void SelectExternal(const COutPoint& outpoint, const CTxOut& txout) { setSelected.insert(outpoint); m_external_txouts.emplace(outpoint, txout); |