Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/utils/cryptography/TrieProof.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion test/utils/cryptography/TrieProof.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }),
Expand Down
Loading