From 34eefbf553239d46b62d78901814d99450f7da99 Mon Sep 17 00:00:00 2001 From: David Perkins Date: Mon, 5 Jan 2026 13:45:33 -0500 Subject: [PATCH] docs(TrieProof): `event` -> `receipt` --- contracts/utils/cryptography/TrieProof.sol | 2 +- test/utils/cryptography/TrieProof.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/utils/cryptography/TrieProof.sol b/contracts/utils/cryptography/TrieProof.sol index 676e9f9c340..9a8fb750012 100644 --- a/contracts/utils/cryptography/TrieProof.sol +++ b/contracts/utils/cryptography/TrieProof.sol @@ -11,7 +11,7 @@ import {RLP} from "../RLP.sol"; * The {traverse} and {verify} functions can be used to prove the following value: * * * Transaction against the transactionsRoot of a block. - * * Event against receiptsRoot of a block. + * * Receipt against receiptsRoot of a block. * * Account details (RLP encoding of [nonce, balance, storageRoot, codeHash]) against the stateRoot of a block. * * Storage slot (RLP encoding of the value) against the storageRoot of a account. * diff --git a/test/utils/cryptography/TrieProof.test.js b/test/utils/cryptography/TrieProof.test.js index 78e961def20..b992b5d6f27 100644 --- a/test/utils/cryptography/TrieProof.test.js +++ b/test/utils/cryptography/TrieProof.test.js @@ -66,7 +66,7 @@ describe('TrieProof', function () { describe('verify', function () { it('verify transaction and receipt inclusion in block', async function () { - // Multiple transactions/events in a block + // Multiple transactions/receipts in a block const txs = await batchInBlock( [ () => this.target.mockFunction({ gasLimit: 100000 }),