core/rawdb: Fix error logs

This commit is contained in:
pengin7384 2024-05-01 00:20:59 +09:00
parent 70e3c694ba
commit 46230b1e4f

View file

@ -184,7 +184,7 @@ func ReadReceipt(db ethdb.Reader, txHash common.Hash, config *params.ChainConfig
}
}
log.Error("Receipt not found", "number", *blockNumber, "txHash", blockHash, "txhash", txHash)
log.Error("Receipt not found", "number", *blockNumber, "blockHash", blockHash, "txHash", txHash)
return nil, common.Hash{}, 0, 0
}