diff --git a/tools/evmc/main.cpp b/tools/evmc/main.cpp index cf3e68c08..d1f8fc724 100644 --- a/tools/evmc/main.cpp +++ b/tools/evmc/main.cpp @@ -69,7 +69,7 @@ int main(int argc, const char** argv) noexcept run_cmd.add_option("code", code_arg, "Bytecode")->required()->check(HexOrFile); run_cmd.add_option("--gas", gas, "Execution gas limit") ->capture_default_str() - ->check(CLI::Range(0, 1000000000)); + ->check(CLI::Range(0LL, 1000000000000LL)); run_cmd.add_option("--rev", rev, "EVM revision")->capture_default_str(); run_cmd.add_option("--input", input_arg, "Input bytes")->check(HexOrFile); run_cmd.add_flag(