mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 11:36:37 +00:00
eth: dump rpc gas cap and tx fee cap (#22574)
This commit is contained in:
parent
4adf0b9187
commit
54c0d573d7
1 changed files with 2 additions and 2 deletions
|
|
@ -187,11 +187,11 @@ type Config struct {
|
||||||
EVMInterpreter string
|
EVMInterpreter string
|
||||||
|
|
||||||
// RPCGasCap is the global gas cap for eth-call variants.
|
// RPCGasCap is the global gas cap for eth-call variants.
|
||||||
RPCGasCap uint64 `toml:",omitempty"`
|
RPCGasCap uint64
|
||||||
|
|
||||||
// RPCTxFeeCap is the global transaction fee(price * gaslimit) cap for
|
// RPCTxFeeCap is the global transaction fee(price * gaslimit) cap for
|
||||||
// send-transction variants. The unit is ether.
|
// send-transction variants. The unit is ether.
|
||||||
RPCTxFeeCap float64 `toml:",omitempty"`
|
RPCTxFeeCap float64
|
||||||
|
|
||||||
// Checkpoint is a hardcoded checkpoint which can be nil.
|
// Checkpoint is a hardcoded checkpoint which can be nil.
|
||||||
Checkpoint *params.TrustedCheckpoint `toml:",omitempty"`
|
Checkpoint *params.TrustedCheckpoint `toml:",omitempty"`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue