From 2e3924ddea5064bdcb7ac02724be458469b59a7f Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Tue, 15 Nov 2022 10:47:46 +0530 Subject: [PATCH] lint --- consensus/misc/eip1559_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/consensus/misc/eip1559_test.go b/consensus/misc/eip1559_test.go index 2509105306..aba95d8005 100644 --- a/consensus/misc/eip1559_test.go +++ b/consensus/misc/eip1559_test.go @@ -109,6 +109,8 @@ func TestBlockGasLimits(t *testing.T) { // TestCalcBaseFee assumes all blocks are 1559-blocks func TestCalcBaseFee(t *testing.T) { + t.Parallel() + tests := []struct { parentBaseFee int64 parentGasLimit uint64 @@ -136,6 +138,7 @@ func TestCalcBaseFee(t *testing.T) { // TestCalcBaseFee assumes all blocks are 1559-blocks post Delhi Hard Fork func TestCalcBaseFeeDelhi(t *testing.T) { + t.Parallel() testConfig := copyConfig(config()) @@ -166,5 +169,4 @@ func TestCalcBaseFeeDelhi(t *testing.T) { t.Errorf("test %d: have %d want %d, ", i, have, want) } } - }