Skip to content

Commit

Permalink
Fix OnRamp spacking (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
matYang authored Oct 6, 2023
1 parent 68ebce8 commit e5a56f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/src/v0.8/ccip/onRamp/EVM2EVMOnRamp.sol
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ contract EVM2EVMOnRamp is IEVM2AnyOnRamp, ILinkAvailable, AggregateRateLimiter,
uint16 maxTokensLength; // │ Maximum number of ERC20 token transfers per message
uint32 destGasOverhead; // │ Extra gas charged on top of the gasLimit
uint16 destGasPerPayloadByte; // │ Destination chain gas charged for passing each byte of `data` payload to receiver
uint32 destDataAvailabilityOverheadGas; // Extra data availability gas charged on top of the message, e.g. for OCR
uint16 destGasPerDataAvailabilityByte; // ──Amount of gas to charge per byte of message data that needs availability
uint16 destDataAvailabilityMultiplier; // ──╮ Multiplier for data availability gas, multiples of 1e-4, or 0.0001
uint32 destDataAvailabilityOverheadGas; // ─╯ Extra data availability gas charged on top of the message, e.g. for OCR
uint16 destGasPerDataAvailabilityByte; // ──Amount of gas to charge per byte of message data that needs availability
uint16 destDataAvailabilityMultiplier; // Multiplier for data availability gas, multiples of 1e-4, or 0.0001
address priceRegistry; // │ Price registry address
uint32 maxDataSize; // │ Maximum payload data size, max 4GB
uint32 maxGasLimit; // ─────────────────────╯ Maximum gas limit for messages targeting EVMs, max 4 Billion gas
Expand Down

0 comments on commit e5a56f4

Please sign in to comment.