mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
Fix ListCoins test failure due to unset g_wallet_allow_fallback_fee
New global variables were introduced in #11882 and not setting them causes: wallet/test/wallet_tests.cpp(638): error in "ListCoins": check wallet->CreateTransaction({recipient}, wtx, reservekey, fee, changePos, error, dummy) failed wallet/test/wallet_tests.cpp(679): error in "ListCoins": check list.begin()->second.size() == 2 failed [1 != 2] wallet/test/wallet_tests.cpp(686): error in "ListCoins": check available.size() == 2 failed [1 != 2] wallet/test/wallet_tests.cpp(705): error in "ListCoins": check list.begin()->second.size() == 2 failed [1 != 2] It's possible to reproduce the failure reliably by running: src/test/test_bitcoin --log_level=test_suite --run_test=wallet_tests/ListCoins Failures happen nondeterministically because boost test framework doesn't run tests in a specified order, and tests that run previously can set the global variables and mask the bug.
This commit is contained in:
parent
90a0aed511
commit
7ba2d57852
@ -158,8 +158,6 @@ void TestGUI()
|
|||||||
test.CreateAndProcessBlock({}, GetScriptForRawPubKey(test.coinbaseKey.GetPubKey()));
|
test.CreateAndProcessBlock({}, GetScriptForRawPubKey(test.coinbaseKey.GetPubKey()));
|
||||||
}
|
}
|
||||||
bitdb.MakeMock();
|
bitdb.MakeMock();
|
||||||
g_wallet_allow_fallback_fee = true;
|
|
||||||
|
|
||||||
std::unique_ptr<CWalletDBWrapper> dbw(new CWalletDBWrapper(&bitdb, "wallet_test.dat"));
|
std::unique_ptr<CWalletDBWrapper> dbw(new CWalletDBWrapper(&bitdb, "wallet_test.dat"));
|
||||||
CWallet wallet(std::move(dbw));
|
CWallet wallet(std::move(dbw));
|
||||||
bool firstRun;
|
bool firstRun;
|
||||||
|
@ -11,8 +11,6 @@ WalletTestingSetup::WalletTestingSetup(const std::string& chainName):
|
|||||||
TestingSetup(chainName)
|
TestingSetup(chainName)
|
||||||
{
|
{
|
||||||
bitdb.MakeMock();
|
bitdb.MakeMock();
|
||||||
g_wallet_allow_fallback_fee = true;
|
|
||||||
|
|
||||||
bool fFirstRun;
|
bool fFirstRun;
|
||||||
g_address_type = OUTPUT_TYPE_DEFAULT;
|
g_address_type = OUTPUT_TYPE_DEFAULT;
|
||||||
g_change_type = OUTPUT_TYPE_DEFAULT;
|
g_change_type = OUTPUT_TYPE_DEFAULT;
|
||||||
|
@ -43,7 +43,7 @@ bool bSpendZeroConfChange = DEFAULT_SPEND_ZEROCONF_CHANGE;
|
|||||||
bool fWalletRbf = DEFAULT_WALLET_RBF;
|
bool fWalletRbf = DEFAULT_WALLET_RBF;
|
||||||
OutputType g_address_type = OUTPUT_TYPE_NONE;
|
OutputType g_address_type = OUTPUT_TYPE_NONE;
|
||||||
OutputType g_change_type = OUTPUT_TYPE_NONE;
|
OutputType g_change_type = OUTPUT_TYPE_NONE;
|
||||||
bool g_wallet_allow_fallback_fee = false; //<! will be defined via chainparams
|
bool g_wallet_allow_fallback_fee = true; //<! will be defined via chainparams
|
||||||
|
|
||||||
const char * DEFAULT_WALLET_DAT = "wallet.dat";
|
const char * DEFAULT_WALLET_DAT = "wallet.dat";
|
||||||
const uint32_t BIP32_HARDENED_KEY_LIMIT = 0x80000000;
|
const uint32_t BIP32_HARDENED_KEY_LIMIT = 0x80000000;
|
||||||
|
@ -66,7 +66,6 @@ static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 6;
|
|||||||
static const bool DEFAULT_WALLET_RBF = false;
|
static const bool DEFAULT_WALLET_RBF = false;
|
||||||
static const bool DEFAULT_WALLETBROADCAST = true;
|
static const bool DEFAULT_WALLETBROADCAST = true;
|
||||||
static const bool DEFAULT_DISABLE_WALLET = false;
|
static const bool DEFAULT_DISABLE_WALLET = false;
|
||||||
static const bool DEFAULT_WALLET_ALLOW_FALLBACKFEE = true;
|
|
||||||
|
|
||||||
extern const char * DEFAULT_WALLET_DAT;
|
extern const char * DEFAULT_WALLET_DAT;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user