Skip to content

Commit

Permalink
doc: upd transferLiquidity for burnMint
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Dec 11, 2024
1 parent 5f84e6e commit 8fea66b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {UpgradeableTokenPool} from "./UpgradeableTokenPool.sol";
/// @dev Contract adaptations:
/// - Implementation of Initializable to allow upgrades
/// - Move of allowlist and router definition to initialization stage
/// - Add GHO-Specific onlyOwner `transferLiquidity` which mints liquidity to the old pool

/// @dev Pool whitelisting mode is set in the constructor and cannot be modified later.
/// It either accepts any address as originalSender, or only accepts whitelisted originalSender.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
```diff
diff --git a/src/v0.8/ccip/pools/BurnMintTokenPool.sol b/src/v0.8/ccip/pools/GHO/UpgradeableBurnMintTokenPool.sol
index 30203a4ced..d47f3adbe7 100644
index 30203a4ced..543cfd77ee 100644
--- a/src/v0.8/ccip/pools/BurnMintTokenPool.sol
+++ b/src/v0.8/ccip/pools/GHO/UpgradeableBurnMintTokenPool.sol
@@ -1,33 +1,60 @@
@@ -1,33 +1,61 @@
// SPDX-License-Identifier: BUSL-1.1
-pragma solidity 0.8.24;
+pragma solidity ^0.8.0;
Expand All @@ -28,6 +28,7 @@ index 30203a4ced..d47f3adbe7 100644
+/// @dev Contract adaptations:
+/// - Implementation of Initializable to allow upgrades
+/// - Move of allowlist and router definition to initialization stage
+/// - Add GHO-Specific onlyOwner `transferLiquidity` which mints liquidity to the old pool

-/// @notice This pool mints and burns a 3rd-party token.
/// @dev Pool whitelisting mode is set in the constructor and cannot be modified later.
Expand Down

0 comments on commit 8fea66b

Please sign in to comment.