wallet: Remove use_max_sig default value

As we change the constructor for COutput, it becomes somewhat dangerous
if there are default values.
This commit is contained in:
Andrew Chow
2022-03-16 15:13:57 -04:00
parent 10379f007f
commit 46022953ee
4 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ public:
*/
bool safe;
COutput(const CWallet& wallet, const CWalletTx& wtx, int iIn, int depth, bool spendable, bool solvable, bool safe, bool use_max_sig_in = false)
COutput(const CWallet& wallet, const CWalletTx& wtx, int iIn, int depth, bool spendable, bool solvable, bool safe, bool use_max_sig_in)
: tx(&wtx),
i(iIn),
depth(depth),