|
|
@ -44,7 +44,7 @@ func WithCallGasLimit(gaslimit uint64) func(nodeConf *node.Config, ethConf *ethc |
|
|
|
// gas tip for a transaction to be included.
|
|
|
|
// gas tip for a transaction to be included.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// 0 is not possible as a live Geth node would reject that due to DoS protection,
|
|
|
|
// 0 is not possible as a live Geth node would reject that due to DoS protection,
|
|
|
|
// so the simulated backend will replicate that behavior for consisntency.
|
|
|
|
// so the simulated backend will replicate that behavior for consistency.
|
|
|
|
func WithMinerMinTip(tip *big.Int) func(nodeConf *node.Config, ethConf *ethconfig.Config) { |
|
|
|
func WithMinerMinTip(tip *big.Int) func(nodeConf *node.Config, ethConf *ethconfig.Config) { |
|
|
|
if tip == nil || tip.Cmp(new(big.Int)) <= 0 { |
|
|
|
if tip == nil || tip.Cmp(new(big.Int)) <= 0 { |
|
|
|
panic("invalid miner minimum tip") |
|
|
|
panic("invalid miner minimum tip") |
|
|
|