Skip to content

Commit

Permalink
Update gap size to follow 50 rule (#10948)
Browse files Browse the repository at this point in the history
  • Loading branch information
pahor167 authored Feb 22, 2024
1 parent d6b6e62 commit 7a2d29e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ contract FeeCurrencyAdapter is Initializable, CalledByVm, IFeeCurrencyAdapter {

uint8 public expectedDecimals;

uint256[48] __gap;
uint256[44] __gap;

/**
* @notice Sets initialized == true on implementation contracts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "@openzeppelin/contracts8/token/ERC20/IERC20.sol";
import "./FeeCurrencyAdapter.sol";

contract FeeCurrencyAdapterOwnable is FeeCurrencyAdapter, Ownable {
uint256[48] __gap2;
uint256[49] __gap2;

/**
* @notice Sets initialized == true on implementation contracts
Expand Down

0 comments on commit 7a2d29e

Please sign in to comment.