diff --git a/l1-contracts/contracts/state-transition/chain-deps/facets/Executor.sol b/l1-contracts/contracts/state-transition/chain-deps/facets/Executor.sol index 01a15829c..9adfc3b9e 100644 --- a/l1-contracts/contracts/state-transition/chain-deps/facets/Executor.sol +++ b/l1-contracts/contracts/state-transition/chain-deps/facets/Executor.sol @@ -228,9 +228,9 @@ contract ExecutorFacet is ZKChainBase, IExecutor { } } - // We only require 8 logs to be checked, the 9th is if we are expecting a protocol upgrade - // Without the protocol upgrade we expect 8 logs: 2^8 - 1 = 255 - // With the protocol upgrade we expect 9 logs: 2^9 - 1 = 511 + // We only require 7 logs to be checked, the 8th is if we are expecting a protocol upgrade + // Without the protocol upgrade we expect 7 logs: 2^7 - 1 = 127 + // With the protocol upgrade we expect 8 logs: 2^8 - 1 = 255 if (_expectedSystemContractUpgradeTxHash == bytes32(0)) { if (processedLogs != 127) { revert MissingSystemLogs(127, processedLogs);