Skip to content

Commit

Permalink
chore: update comments for modified configs
Browse files Browse the repository at this point in the history
  • Loading branch information
bendanzhentan committed Dec 11, 2023
1 parent cc93256 commit fe94242
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ type L2StandardBridgeBotConfig struct {
// L2StandardBridgeBot contract doesn't limit the L2 tokens to be bridged, but this off-chain bot
// process only whitelists the tokens in this list and ignore tokens not in this list.
//
// **IMPORTANT: If this list is empty (by default), all L2 tokens are whitelisted.**
// **IMPORTANT: If this list is unset, all L2 tokens are whitelisted.**
WhitelistL2TokenList *[]string `toml:"whitelist-l2-token-list"`

// UpperMinGasLimit is the upper limit of the minimum gas limit of the L2StandardBridgeBot contract.
//
// **IMPORTANT: If this value is 0 (by default), the L2StandardBridgeBot contract doesn't limit the minimum gas limit.**
// **IMPORTANT: If this value is unset, the L2StandardBridgeBot contract doesn't limit the minimum gas limit.**
UpperMinGasLimit *uint32 `toml:"upper-min-gas-limit"`

// UpperExtraDataSize is the upper limit of the extra data size of the L2StandardBridgeBot contract.
//
// **IMPORTANT: If this value is 0 (by default), the L2StandardBridgeBot contract doesn't limit the extra data size.**
// **IMPORTANT: If this value is unset, the L2StandardBridgeBot contract doesn't limit the extra data size.**
UpperExtraDataSize *uint32 `toml:"upper-extra-data-size"`
}

Expand Down

0 comments on commit fe94242

Please sign in to comment.