bench: Make CoinSelection output groups pass eligibility filter
Set the depth of the output groups used in the CoinSelection benchmark to be 6 in order to pass the eligibility filter for the benchmark.
This commit is contained in:
parent
230652cafc
commit
494634a052
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ static void addCoin(const CAmount& nValue, const CWallet& wallet, std::vector<Ou
|
|||
|
||||
int nAge = 6 * 24;
|
||||
COutput output(wtx, nInput, nAge, true /* spendable */, true /* solvable */, true /* safe */);
|
||||
groups.emplace_back(output.GetInputCoin(), 0, false, 0, 0);
|
||||
groups.emplace_back(output.GetInputCoin(), 6, false, 0, 0);
|
||||
}
|
||||
|
||||
// Simple benchmark for wallet coin selection. Note that it maybe be necessary
|
||||
|
|
Loading…
Reference in a new issue