Skip to content

Commit

Permalink
resolve request changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason-W123 committed Jan 17, 2024
1 parent 9ff6a0c commit 6417a03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/verify-rollup/src/partial-handlers/rollup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,9 @@ export const rollupHandler = async (
console.log('The state transition function is standard version');
// check if the rollups' arbos version is latest or not
if (index < currentMainnetWasmModuleRootIndex) {
warningMessages.push('Arbos version is old');
warningMessages.push(
`Arbos version is old, Rollup wasmModuleRoot is ${moduleRoot}. Latest standard wasmModuleRoot is ${WASMModuleRoots[currentMainnetWasmModuleRootIndex]}.`,
);
}
} else {
console.log('The state transition function is not standard version');
Expand Down

0 comments on commit 6417a03

Please sign in to comment.