From 46230b1e4f038935e5ebe4e1de14f034588bc2d8 Mon Sep 17 00:00:00 2001 From: pengin7384 Date: Wed, 1 May 2024 00:20:59 +0900 Subject: [PATCH] core/rawdb: Fix error logs --- core/rawdb/accessors_indexes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rawdb/accessors_indexes.go b/core/rawdb/accessors_indexes.go index c0323a23e2..cd5db3dd3e 100644 --- a/core/rawdb/accessors_indexes.go +++ b/core/rawdb/accessors_indexes.go @@ -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 }