optional wallet blockChain tests, beacuse it takes a while

This commit is contained in:
CJentzsch 2015-05-11 10:11:36 +02:00
parent c07ab5aa36
commit 2add2a4de9
2 changed files with 4 additions and 0 deletions

View File

@ -732,6 +732,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;
@ -739,6 +741,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