aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/flags.go
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2019-04-08 19:49:52 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-04-08 20:15:13 +0800
commite872ba7a9e8123a4010198ee8dfaada9f71fa24a (patch)
tree11a3ae72a1ee1854fc77795c76c232fcde0cd186 /cmd/utils/flags.go
parent9d9c6b5847bfd1267c2fee60f5a5b05bdaaf4216 (diff)
downloaddexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar
dexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.gz
dexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.bz2
dexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.lz
dexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.xz
dexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.zst
dexon-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.zip
eth, les, geth: implement cli-configurable global gas cap for RPC calls (#19401)
* eth, les, geth: implement cli-configurable global gas cap for RPC calls * graphql, ethapi: place gas cap in DoCall * ethapi: reformat log message
Diffstat (limited to 'cmd/utils/flags.go')
-rw-r--r--cmd/utils/flags.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 55e84b876..052660ba1 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -411,6 +411,10 @@ var (
Name: "vmdebug",
Usage: "Record information useful for VM and contract debugging",
}
+ RPCGlobalGasCap = cli.Uint64Flag{
+ Name: "rpc.gascap",
+ Usage: "Sets a cap on gas that can be used in eth_call/estimateGas",
+ }
// Logging and debug settings
EthStatsURLFlag = cli.StringFlag{
Name: "ethstats",
@@ -1256,6 +1260,9 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *eth.Config) {
if ctx.GlobalIsSet(EVMInterpreterFlag.Name) {
cfg.EVMInterpreter = ctx.GlobalString(EVMInterpreterFlag.Name)
}
+ if ctx.GlobalIsSet(RPCGlobalGasCap.Name) {
+ cfg.RPCGasCap = new(big.Int).SetUint64(ctx.GlobalUint64(RPCGlobalGasCap.Name))
+ }
// Override any default configs for hard coded networks.
switch {