Skip to content
Merged
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 packages/statemanager/src/statefulVerkleStateManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ export class StatefulVerkleStateManager implements StateManagerInterface {
}

// Verifies that the witness post-state matches the computed post-state
async verifyPostState(accessWitness: VerkleAccessWitnessInterface): Promise<boolean> {
async verifyVerklePostState(accessWitness: VerkleAccessWitnessInterface): Promise<boolean> {
// track what all chunks were accessed so as to compare in the end if any chunks were missed
// in access while comparing against the provided poststate in the execution witness
const accessedChunks = new Map<string, boolean>()
Expand Down
2 changes: 1 addition & 1 deletion packages/statemanager/src/statelessVerkleStateManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ export class StatelessVerkleStateManager implements StateManagerInterface {
}

// Verifies that the witness post-state matches the computed post-state
verifyPostState(accessWitness: VerkleAccessWitnessInterface): Promise<boolean> {
verifyVerklePostState(accessWitness: VerkleAccessWitnessInterface): Promise<boolean> {
// track what all chunks were accessed so as to compare in the end if any chunks were missed
// in access while comparing against the provided poststate in the execution witness
const accessedChunks = new Map<string, boolean>()
Expand Down
Loading