Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
excaliborr committed Aug 21, 2024
1 parent 9518cd9 commit aab5192
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ After all these variables are set, navigate to the `script/mainnet/Deploy.s.sol`
// NOTE: We have these hardcoded to default values, if used in product you will need to change them
bytes[] memory _usdcInitTxs = new bytes[](3);
string memory _name = string.concat('Bridged USDC, ' ', '(', chainName, ')');
string memory _name = string.concat('Bridged USDC', ' ', '(', chainName, ')');
_usdcInitTxs[0] = abi.encodeCall(IUSDC.initializeV2, (_name));
_usdcInitTxs[1] = USDCInitTxs.INITIALIZEV2_1;
Expand Down
2 changes: 1 addition & 1 deletion script/mainnet/deploy/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract Deploy is Script {
// NOTE: We have these hardcoded to default values, if used in product you will need to change them

bytes[] memory _usdcInitTxs = new bytes[](3);
string memory _name = string.concat('Bridged ', ' ', '(', chainName, ')');
string memory _name = string.concat('Bridged USDC', ' ', '(', chainName, ')');

_usdcInitTxs[0] = abi.encodeCall(IUSDC.initializeV2, (_name));
_usdcInitTxs[1] = USDCInitTxs.INITIALIZEV2_1;
Expand Down

0 comments on commit aab5192

Please sign in to comment.