Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Aug 22, 2024
1 parent 7ec0bec commit e5e810b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion system-contracts/contracts/EvmGasManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ contract EvmGasManager {
}
}

function warmSlot(uint256 _slot, uint256 _currentValue) external payable onlySystemEvm returns (bool isWarm, uint256 originalValue) {
function warmSlot(
uint256 _slot,
uint256 _currentValue
) external payable onlySystemEvm returns (bool isWarm, uint256 originalValue) {
uint256 slot = IS_SLOT_WARM_PREFIX | uint256(uint160(msg.sender));
assembly {
mstore(0, slot)
Expand Down

0 comments on commit e5e810b

Please sign in to comment.