You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: [N-01] Constants not using UPPER_CASE format (#322)
* fix: [N-01] Constants not using UPPER_CASE format
* remove refund address change
Signed-off-by: Matt Rice <matthewcrice32@gmail.com>
---------
Signed-off-by: Matt Rice <matthewcrice32@gmail.com>
Co-authored-by: Matt Rice <matthewcrice32@gmail.com>
Copy file name to clipboardExpand all lines: contracts/chain-adapters/ZkSync_Adapter.sol
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -72,15 +72,15 @@ contract ZkSync_Adapter is AdapterInterface {
72
72
// goes live. For now, we'll hardcode these and use aggressive values to ensure inclusion.
73
73
74
74
// Limit on L2 gas to spend.
75
-
uint256public constant l2GasLimit=300_000;
75
+
uint256public constant L2_GAS_LIMIT=300_000;
76
76
77
77
// How much gas is required to publish a byte of data from L1 to L2. 800 is the required value
78
78
// as set here https://github.com/matter-labs/era-contracts/blob/6391c0d7bf6184d7f6718060e3991ba6f0efe4a7/ethereum/contracts/zksync/facets/Mailbox.sol#L226
79
79
// Note, this value can change and will require an updated adapter.
0 commit comments