Skip to content

Commit

Permalink
chore: fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Nov 20, 2024
1 parent 93b0f93 commit d699862
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract UpgradeableBurnMintTokenPool is Initializable, UpgradeableBurnMintToken

/// @dev Constructor
/// @param token The bridgeable token that is managed by this pool.
/// @param rmnProxy The address of the arm proxy
/// @param rmnProxy The address of the rmn proxy
/// @param allowlistEnabled True if pool is set to access-controlled mode, false otherwise
constructor(
address token,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ contract UpgradeableLockReleaseTokenPool is Initializable, UpgradeableTokenPool,
/// @dev Can be address(0) if none is configured.
address internal s_bridgeLimitAdmin;

// / @dev Constructor
// / @param token The bridgeable token that is managed by this pool.
// / @param rmnProxy The address of the rmn proxy
// / @param allowlistEnabled True if pool is set to access-controlled mode, false otherwise
// / @param acceptLiquidity True if the pool accepts liquidity, false otherwise
/// @dev Constructor
/// @param token The bridgeable token that is managed by this pool.
/// @param rmnProxy The address of the rmn proxy
/// @param allowlistEnabled True if pool is set to access-controlled mode, false otherwise
/// @param acceptLiquidity True if the pool accepts liquidity, false otherwise
constructor(
address token,
address rmnProxy,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```diff
diff --git a/src/v0.8/ccip/pools/BurnMintTokenPool.sol b/src/v0.8/ccip/pools/GHO/UpgradeableBurnMintTokenPool.sol
index c48c8e51fb..007f9e4f14 100644
index c48c8e51fb..287cb13e9c 100644
--- a/src/v0.8/ccip/pools/BurnMintTokenPool.sol
+++ b/src/v0.8/ccip/pools/GHO/UpgradeableBurnMintTokenPool.sol
@@ -1,29 +1,56 @@
Expand Down Expand Up @@ -40,7 +40,7 @@ index c48c8e51fb..007f9e4f14 100644

+ /// @dev Constructor
+ /// @param token The bridgeable token that is managed by this pool.
+ /// @param rmnProxy The address of the arm proxy
+ /// @param rmnProxy The address of the rmn proxy
+ /// @param allowlistEnabled True if pool is set to access-controlled mode, false otherwise
constructor(
- IBurnMintERC20 token,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```diff
diff --git a/src/v0.8/ccip/pools/LockReleaseTokenPool.sol b/src/v0.8/ccip/pools/GHO/UpgradeableLockReleaseTokenPool.sol
index 3a4a4aef6d..6165ea6bc0 100644
index 3a4a4aef6d..b714fc2342 100644
--- a/src/v0.8/ccip/pools/LockReleaseTokenPool.sol
+++ b/src/v0.8/ccip/pools/GHO/UpgradeableLockReleaseTokenPool.sol
@@ -1,24 +1,35 @@
Expand Down Expand Up @@ -64,11 +64,11 @@ index 3a4a4aef6d..6165ea6bc0 100644
+ /// @dev Can be address(0) if none is configured.
+ address internal s_bridgeLimitAdmin;
+
+ // / @dev Constructor
+ // / @param token The bridgeable token that is managed by this pool.
+ // / @param rmnProxy The address of the rmn proxy
+ // / @param allowlistEnabled True if pool is set to access-controlled mode, false otherwise
+ // / @param acceptLiquidity True if the pool accepts liquidity, false otherwise
+ /// @dev Constructor
+ /// @param token The bridgeable token that is managed by this pool.
+ /// @param rmnProxy The address of the rmn proxy
+ /// @param allowlistEnabled True if pool is set to access-controlled mode, false otherwise
+ /// @param acceptLiquidity True if the pool accepts liquidity, false otherwise
constructor(
- IERC20 token,
- address[] memory allowlist,
Expand Down

0 comments on commit d699862

Please sign in to comment.