diff options
author | Andrew Chow <achow101-github@achow101.com> | 2022-03-21 14:19:10 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2022-04-14 12:40:36 -0400 |
commit | 912f1ed181161b0365776cd490b63137aaad708a (patch) | |
tree | 40a554a56263010294a661a6f75159e811b94300 /src/wallet/test | |
parent | b69fd5eaa99f84b62a49d7c7f48d8cee1227592a (diff) |
wallet: track which coin selection algorithm produced a SelectionResult
Diffstat (limited to 'src/wallet/test')
-rw-r--r-- | src/wallet/test/coinselector_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/coinselector_tests.cpp b/src/wallet/test/coinselector_tests.cpp index 2a08c8ab57..72e749477b 100644 --- a/src/wallet/test/coinselector_tests.cpp +++ b/src/wallet/test/coinselector_tests.cpp @@ -168,7 +168,7 @@ BOOST_AUTO_TEST_CASE(bnb_search_test) FastRandomContext rand{}; // Setup std::vector<COutput> utxo_pool; - SelectionResult expected_result(CAmount(0)); + SelectionResult expected_result(CAmount(0), SelectionAlgorithm::BNB); ///////////////////////// // Known Outcome tests // |