Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Nov 1, 2023
1 parent 7e1e61d commit 1aaf953
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsonrpc/eth_endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

Expand Down

0 comments on commit 1aaf953

Please sign in to comment.