Skip to content

Commit 00e81e9

Browse files
committed
Fixed LogEntry transaction hash value
1 parent 33593b6 commit 00e81e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Nethermind/Nethermind.JsonRpc/Data/LogEntryForRpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public LogEntryForRpc(TxReceipt receipt, LogEntry logEntry, int index)
4141
Removed = false;
4242
LogIndex = index;
4343
TransactionIndex = receipt.Index;
44-
TransactionHash = receipt.BlockHash;
44+
TransactionHash = receipt.TransactionHash;
4545
BlockHash = receipt.BlockHash;
4646
BlockNumber = receipt.BlockNumber;
4747
Address = logEntry.LoggersAddress;

0 commit comments

Comments
 (0)