From 1aaf953d373b2a781c2c6268c36e01ba52d82b3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Negovanovi=C4=87?= Date: Wed, 1 Nov 2023 11:36:51 +0100 Subject: [PATCH] Fix --- jsonrpc/eth_endpoint_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsonrpc/eth_endpoint_test.go b/jsonrpc/eth_endpoint_test.go index ed61a4184a..930471fc82 100644 --- a/jsonrpc/eth_endpoint_test.go +++ b/jsonrpc/eth_endpoint_test.go @@ -299,13 +299,13 @@ func TestEth_TxnType(t *testing.T) { func newTestEthEndpoint(store testStore) *Eth { return &Eth{ - hclog.NewNullLogger(), store, 100, nil, 0, + hclog.NewNullLogger(), store, 100, nil, 0, nil, } } func newTestEthEndpointWithPriceLimit(store testStore, priceLimit uint64) *Eth { return &Eth{ - hclog.NewNullLogger(), store, 100, nil, priceLimit, + hclog.NewNullLogger(), store, 100, nil, priceLimit, nil, } }