From fd56e28d940e5b39cfcfa3cbbff1c9a73957fdb7 Mon Sep 17 00:00:00 2001 From: Rosen Santev Date: Tue, 13 Feb 2024 15:09:40 +0200 Subject: [PATCH] Fix tests --- state/executor_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/state/executor_test.go b/state/executor_test.go index e88577b3a6..c236c44c43 100644 --- a/state/executor_test.go +++ b/state/executor_test.go @@ -199,7 +199,7 @@ func TestExecutor_apply_FeeDistribution(t *testing.T) { } if txType == types.StateTx { - tx.Gas = 7000000 + tx.Gas = 6000000 } return tx @@ -325,7 +325,7 @@ func TestExecutor_apply_SystemAddrBalanceInject(t *testing.T) { Value: value, Type: txType, GasPrice: big.NewInt(0), - Gas: 7000000, + Gas: 6000000, To: to, Nonce: nonce, } @@ -398,7 +398,7 @@ func TestExecutor_Apply(t *testing.T) { Value: value, Type: txType, GasPrice: big.NewInt(0), - Gas: 7000000, + Gas: 6000000, To: toRevert, Nonce: 0, Input: input, @@ -415,7 +415,7 @@ func TestExecutor_Apply(t *testing.T) { Value: value, Type: txType, GasPrice: big.NewInt(0), - Gas: 7000000, + Gas: 6000000, To: &to, Nonce: 1, },