From 0bfe4a0380c86d7c9bf19fe84368b9695fcb96c7 Mon Sep 17 00:00:00 2001 From: Arran Schlosberg <519948+ARR4N@users.noreply.github.com> Date: Wed, 11 Jun 2025 21:06:26 +0100 Subject: [PATCH] chore: fix linter issues that CI missed (#188) ## Why this should be merged #185 was allowed to merge despite CI requiring the `lint` job. ## How this works Fix linter issues. ## How this was tested The first commit is an empty commit, expected to fail CI, to confirm that the job is in fact required. --- core/state_transition.libevm_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/state_transition.libevm_test.go b/core/state_transition.libevm_test.go index 5e13d47dfb..e9d1fd6a68 100644 --- a/core/state_transition.libevm_test.go +++ b/core/state_transition.libevm_test.go @@ -65,11 +65,11 @@ func TestMinimumGasConsumption(t *testing.T) { // All transactions will be basic transfers so consume [params.TxGas] by // default. tests := []struct { - name string - gasLimit uint64 - refund uint64 - minConsumption uint64 - wantUsed uint64 + name string + gasLimit uint64 + refund uint64 + minConsumption uint64 + wantUsed uint64 }{ { name: "consume_extra",