mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 15:39:05 +01:00
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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user