internal: early exit if tx for getTxReceipt not found (#27712)

internal/ethapi: fast exit if tx notfound
This commit is contained in:
Delweng 2023-07-13 18:42:48 +08:00 committed by devopsbo3
parent c5cd161825
commit d927c53a0d

View file

@ -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 err != nil {
if tx == nil || err != nil {
// When the transaction doesn't exist, the RPC method should return JSON null
// as per specification.
return nil, nil