From 6b0f1116cecb777c96e99b827fef72cf6a6c128e Mon Sep 17 00:00:00 2001 From: Geoff Stuart Date: Mon, 16 Jan 2023 07:08:22 -0500 Subject: [PATCH] Remove maybe unnecessary check --- node/impl/full/eth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/impl/full/eth.go b/node/impl/full/eth.go index 9efe71d72..7b35c5206 100644 --- a/node/impl/full/eth.go +++ b/node/impl/full/eth.go @@ -342,7 +342,7 @@ func (a *EthModule) EthGetTransactionReceipt(ctx context.Context, txHash ethtype } tx, err := newEthTxFromFilecoinMessageLookup(ctx, msgLookup, -1, a.Chain, a.StateAPI) - if err != nil && tx.Hash == ethtypes.EmptyEthHash { + if err != nil { return nil, nil }