We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3027c06 commit 84e74d8Copy full SHA for 84e74d8
cmd/mel-replay/receipt_fetcher_test.go
@@ -13,7 +13,6 @@ import (
13
"github.com/ethereum/go-ethereum/core/types"
14
"github.com/ethereum/go-ethereum/crypto"
15
"github.com/ethereum/go-ethereum/trie"
16
- "github.com/ethereum/go-ethereum/trie/testutil"
17
"github.com/offchainlabs/nitro/arbutil"
18
"github.com/stretchr/testify/require"
19
)
@@ -108,7 +107,7 @@ func createTestReceipts(count int) types.Receipts {
108
107
receipt := &types.Receipt{
109
Status: 1,
110
CumulativeGasUsed: 50_000 + uint64(i), // #nosec G115
111
- TxHash: testutil.RandomHash(),
+ TxHash: common.Hash{},
112
ContractAddress: common.Address{},
113
Logs: []*types.Log{},
114
BlockHash: common.BytesToHash([]byte("foobar")),
0 commit comments