diff --git a/cmd/rpcdaemon/commands/eth_receipts.go b/cmd/rpcdaemon/commands/eth_receipts.go
index 3e5e3c1cf4c5077a3edc7a9e72bc62bda1783bec..c9d3af633b9aad6b5b28f1237a57bd007ca1c4e5 100644
--- a/cmd/rpcdaemon/commands/eth_receipts.go
+++ b/cmd/rpcdaemon/commands/eth_receipts.go
@@ -255,8 +255,12 @@ func (api *APIImpl) GetTransactionReceipt(ctx context.Context, hash common.Hash)
 		return nil, err
 	}
 
-	if chainConfig.Bor != nil {
-		if blockNum == 0 {
+	blockNum, ok, err = api.txnLookup(ctx, tx, hash)
+	if err != nil {
+		return nil, err
+	}
+	if !ok {
+		if chainConfig.Bor != nil {
 			var blocN uint64
 			borTx, blockHash, blocN, _, err = rawdb.ReadBorTransaction(tx, hash)
 			if err != nil {
@@ -266,13 +270,7 @@ func (api *APIImpl) GetTransactionReceipt(ctx context.Context, hash common.Hash)
 				return nil, nil // not error, see https://github.com/ledgerwatch/erigon/issues/1645
 			}
 			blockNum = blocN
-		}
-	} else {
-		blockNum, ok, err = api.txnLookup(ctx, tx, hash)
-		if err != nil {
-			return nil, err
-		}
-		if !ok {
+		} else {
 			return nil, nil // not error, see https://github.com/ledgerwatch/erigon/issues/1645
 		}
 	}