Skip to content

Commit a2f214f

Browse files
committed
ensure sequencer is not zero address
1 parent 14bf33c commit a2f214f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Zenith.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ contract Zenith is Passage, AccessControlDefaultAdminRules {
120120
address sequencer = ecrecover(blockCommit, v, r, s);
121121

122122
// assert that signature is valid && sequencer is permissioned
123-
if (!hasRole(SEQUENCER_ROLE, sequencer)) revert BadSignature(sequencer);
123+
if (sequencer == address(0) || !hasRole(SEQUENCER_ROLE, sequencer)) revert BadSignature(sequencer);
124124

125125
// assert this is the first rollup block submitted for this host block
126126
if (lastSubmittedAtBlock[header.rollupChainId] == block.number) revert OneRollupBlockPerHostBlock();

0 commit comments

Comments
 (0)