From e7488b7d299c138cf892baa2aae639ae684a21f2 Mon Sep 17 00:00:00 2001 From: Vitomir Pavlov Date: Fri, 15 Nov 2024 09:41:20 +0200 Subject: [PATCH] rename --- state/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/executor.go b/state/executor.go index 5ba26727..96299322 100644 --- a/state/executor.go +++ b/state/executor.go @@ -198,7 +198,7 @@ func (e *Executor) BeginTxn( Timestamp: int64(header.Timestamp), //nolint:gosec Number: int64(header.Number), //nolint:gosec Difficulty: types.BytesToHash(new(big.Int).SetUint64(header.Difficulty).Bytes()), - BaseFee: new(big.Int).SetUint64(header.baseFee), + BaseFee: new(big.Int).SetUint64(header.BaseFee), GasLimit: int64(header.GasLimit), //nolint:gosec ChainID: e.config.ChainID, BurnContract: burnContract,