Should solve the tiny #25005 (comment).
Which merely happens for the extra "=" character after the comma.
Should solve the tiny #25005 (comment).
Which merely happens for the extra "=" character after the comma.
Thoughts on flipping this around, to properly document the args?:
return AvailableCoins(wallet, coinControl,
/*feerate=*/ std::nullopt,
/*nMinimumAmount=*/ 1,
/*nMaximumAmount=*/ MAX_MONEY,
/*nMinimumSumAmount=*/ MAX_MONEY,
/*nMaximumCount=*/ 0
).total_amount;
Happened because the "feerate=" comment was after the comma.
Thoughts on flipping this around, to properly document the args?
Flipped 👍🏼
243 | + return AvailableCoins(wallet, coinControl, 244 | + /*feerate=*/ std::nullopt, 245 | + /*nMinimumAmount=*/ 1, 246 | + /*nMaximumAmount=*/ MAX_MONEY, 247 | + /*nMinimumSumAmount=*/ MAX_MONEY, 248 | + /*nMaximumCount=*/ 0
nit: could de-dent this to the standard 4 spaces