Merge pull request #1854 from CJentzsch/optionalWalletTests

optional wallet blockChain tests, because it takes a while
This commit is contained in:
Gav Wood 2015-05-13 18:37:45 +03:00
commit 021f20a640
2 changed files with 4 additions and 0 deletions

View File

@ -726,6 +726,8 @@ Options::Options()
bigData = true; bigData = true;
else if (arg == "--checkstate") else if (arg == "--checkstate")
checkState = true; checkState = true;
else if (arg == "--wallet")
wallet = true;
else if (arg == "--all") else if (arg == "--all")
{ {
performance = true; performance = true;
@ -733,6 +735,7 @@ Options::Options()
memory = true; memory = true;
inputLimits = true; inputLimits = true;
bigData = true; bigData = true;
wallet= true;
} }
else if (arg == "--singletest" && i + 1 < argc) else if (arg == "--singletest" && i + 1 < argc)
{ {

View File

@ -195,6 +195,7 @@ public:
bool memory = false; bool memory = false;
bool inputLimits = false; bool inputLimits = false;
bool bigData = false; bool bigData = false;
bool wallet = false;
/// @} /// @}
/// Get reference to options /// Get reference to options