mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
add network flag
This commit is contained in:
parent
6c27ef7367
commit
e325f33856
@ -754,6 +754,8 @@ Options::Options()
|
|||||||
checkState = true;
|
checkState = true;
|
||||||
else if (arg == "--wallet")
|
else if (arg == "--wallet")
|
||||||
wallet = true;
|
wallet = true;
|
||||||
|
else if (arg == "--network")
|
||||||
|
network = true;
|
||||||
else if (arg == "--all")
|
else if (arg == "--all")
|
||||||
{
|
{
|
||||||
performance = true;
|
performance = true;
|
||||||
@ -761,7 +763,8 @@ Options::Options()
|
|||||||
memory = true;
|
memory = true;
|
||||||
inputLimits = true;
|
inputLimits = true;
|
||||||
bigData = true;
|
bigData = true;
|
||||||
wallet= true;
|
wallet = true;
|
||||||
|
network = true;
|
||||||
}
|
}
|
||||||
else if (arg == "--singletest" && i + 1 < argc)
|
else if (arg == "--singletest" && i + 1 < argc)
|
||||||
{
|
{
|
||||||
|
@ -223,6 +223,7 @@ public:
|
|||||||
bool inputLimits = false;
|
bool inputLimits = false;
|
||||||
bool bigData = false;
|
bool bigData = false;
|
||||||
bool wallet = false;
|
bool wallet = false;
|
||||||
|
bool network = false;
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
/// Get reference to options
|
/// Get reference to options
|
||||||
|
Loading…
Reference in New Issue
Block a user