Skip to content

Commit

Permalink
Merge pull request #62 from matter-labs/vb-fix-oz-keccak256-audit-n-03
Browse files Browse the repository at this point in the history
Reorder getter functions in the Bootloader
  • Loading branch information
StanislavBreadless authored Nov 21, 2023
2 parents bc495d0 + d6c93ed commit 7b26445
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bootloader/bootloader.yul
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,6 @@ object "Bootloader" {
ret := 0x0000000000000000000000000000000000008001
}

function MAX_SYSTEM_CONTRACT_ADDR() -> ret {
ret := 0x000000000000000000000000000000000000ffff
}

function ACCOUNT_CODE_STORAGE_ADDR() -> ret {
ret := 0x0000000000000000000000000000000000008002
}
Expand All @@ -468,6 +464,10 @@ object "Bootloader" {
ret := 0x0000000000000000000000000000000000008007
}

function L1_MESSENGER_ADDR() -> ret {
ret := 0x0000000000000000000000000000000000008008
}

function MSG_VALUE_SIMULATOR_ADDR() -> ret {
ret := 0x0000000000000000000000000000000000008009
}
Expand All @@ -492,8 +492,8 @@ object "Bootloader" {
ret := 0x0000000000000000000000000000000000008010
}

function L1_MESSENGER_ADDR() -> ret {
ret := 0x0000000000000000000000000000000000008008
function MAX_SYSTEM_CONTRACT_ADDR() -> ret {
ret := 0x000000000000000000000000000000000000ffff
}

/// @dev The minimal allowed distance in bytes between the pointer to the compressed data
Expand Down

0 comments on commit 7b26445

Please sign in to comment.