mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
[wallet] Add regression test for vValue sort order
This commit is contained in:
parent
fafd09375e
commit
fa3c7e644f
@ -328,6 +328,24 @@ BOOST_AUTO_TEST_CASE(coin_selection_tests)
|
|||||||
empty_wallet();
|
empty_wallet();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(sorting_in_ApproximateBestSet)
|
||||||
|
{
|
||||||
|
CoinSet setCoinsRet;
|
||||||
|
CAmount nValueRet;
|
||||||
|
|
||||||
|
LOCK(wallet.cs_wallet);
|
||||||
|
|
||||||
|
empty_wallet();
|
||||||
|
|
||||||
|
for (int i = 0; i < 1000; i++)
|
||||||
|
add_coin(1000 * COIN);
|
||||||
|
add_coin(3 * COIN);
|
||||||
|
|
||||||
|
BOOST_CHECK(wallet.SelectCoinsMinConf(1003 * COIN, 1, 6, vCoins, setCoinsRet, nValueRet));
|
||||||
|
BOOST_CHECK_EQUAL(nValueRet, 1003 * COIN);
|
||||||
|
BOOST_CHECK_EQUAL(setCoinsRet.size(), 2U);
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(pruning_in_ApproximateBestSet)
|
BOOST_AUTO_TEST_CASE(pruning_in_ApproximateBestSet)
|
||||||
{
|
{
|
||||||
CoinSet setCoinsRet;
|
CoinSet setCoinsRet;
|
||||||
|
Loading…
Reference in New Issue
Block a user