Skip to content

Commit

Permalink
Fix system logs processing (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless authored Sep 27, 2023
1 parent 814dea6 commit 8faf111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/contracts/zksync/facets/Executor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ contract ExecutorFacet is Base, IExecutor {
)
{
// Copy L2 to L1 logs into memory.
bytes memory emittedL2Logs = _newBatch.systemLogs[4:];
bytes memory emittedL2Logs = _newBatch.systemLogs;

// Used as bitmap to set/check log processing happens exactly once.
// See SystemLogKey enum in Constants.sol for ordering.
Expand Down

0 comments on commit 8faf111

Please sign in to comment.