065f82a8cc
* accounts, ethclient: minor tweaks on the new simulated backend * ethclient/simulated: add an initial batch of gas options * accounts, ethclient: remove mandatory gasLimit constructor param * accounts, ethclient: minor option naming tweaks
40 lines
1.6 KiB
Go
40 lines
1.6 KiB
Go
// Copyright 2024 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package simulated
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
|
"github.com/ethereum/go-ethereum/node"
|
|
)
|
|
|
|
// WithBlockGasLimit configures the simulated backend to target a specific gas limit
|
|
// when producing blocks.
|
|
func WithBlockGasLimit(gaslimit uint64) func(nodeConf *node.Config, ethConf *ethconfig.Config) {
|
|
return func(nodeConf *node.Config, ethConf *ethconfig.Config) {
|
|
ethConf.Genesis.GasLimit = gaslimit
|
|
ethConf.Miner.GasCeil = gaslimit
|
|
}
|
|
}
|
|
|
|
// WithCallGasLimit configures the simulated backend to cap eth_calls to a specific
|
|
// gas limit when running client operations.
|
|
func WithCallGasLimit(gaslimit uint64) func(nodeConf *node.Config, ethConf *ethconfig.Config) {
|
|
return func(nodeConf *node.Config, ethConf *ethconfig.Config) {
|
|
ethConf.RPCGasCap = gaslimit
|
|
}
|
|
}
|