diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 85df85d30acb1..ec29cf28f0d7d 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1681,7 +1681,7 @@ func (s *TransactionAPI) GetRawTransactionByHash(ctx context.Context, hash commo // GetTransactionReceipt returns the transaction receipt for the given transaction hash. func (s *TransactionAPI) GetTransactionReceipt(ctx context.Context, hash common.Hash) (map[string]interface{}, error) { tx, blockHash, blockNumber, index, err := s.b.GetTransaction(ctx, hash) - if tx == nil || err != nil { + if err != nil { // When the transaction doesn't exist, the RPC method should return JSON null // as per specification. return nil, nil