aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi/backend.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 /internal/ethapi/backend.go
parent9d9c6b5847bfd1267c2fee60f5a5b05bdaaf4216 (diff)
downloadgo-tangerine-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar
go-tangerine-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.gz
go-tangerine-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.bz2
go-tangerine-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.lz
go-tangerine-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.xz
go-tangerine-e872ba7a9e8123a4010198ee8dfaada9f71fa24a.tar.zst
go-tangerine-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 'internal/ethapi/backend.go')
-rw-r--r--internal/ethapi/backend.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ethapi/backend.go b/internal/ethapi/backend.go
index e23ee03b1..56a3daffa 100644
--- a/internal/ethapi/backend.go
+++ b/internal/ethapi/backend.go
@@ -44,6 +44,7 @@ type Backend interface {
ChainDb() ethdb.Database
EventMux() *event.TypeMux
AccountManager() *accounts.Manager
+ RPCGasCap() *big.Int // global gas cap for eth_call over rpc: DoS protection
// BlockChain API
SetHead(number uint64)