Skip to content

Commit

Permalink
fixup! rpc: include_unsafe option for fundrawtransaction
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bast committed Apr 30, 2021
1 parent 2bf0b1e commit ce70f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/wallet.cpp
Expand Up @@ -2536,7 +2536,7 @@ bool CWallet::SelectCoins(const std::vector<COutput>& vAvailableCoins, const CAm
}
// Try with unsafe inputs if they are allowed. This may spend unconfirmed outputs
// received from other wallets.
if (coin_control.m_include_unsafe_inputs
if (coin_control.m_include_unsafe_inputs
&& SelectCoinsMinConf(
value_to_select, CoinEligibilityFilter(0, 0, max_ancestors-1, max_descendants-1, true /* include_partial_groups */),
vCoins, setCoinsRet, nValueRet, coin_selection_params, bnb_used)) {
Expand Down

0 comments on commit ce70f32

Please sign in to comment.