Skip to content

Commit

Permalink
chore: update wording in scripts
Browse files Browse the repository at this point in the history
chore: remove forge fmt comment
  • Loading branch information
PaulRBerg committed Dec 17, 2023
1 parent 59c9aff commit 767d0f7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion script/DeployCore3.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { SablierV2LockupLinear } from "../src/SablierV2LockupLinear.sol";

import { BaseScript } from "./Base.s.sol";

/// @notice Deploys all V2 Core contract in the following order:
/// @notice Deploys these contracts in the following order:
///
/// 1. {SablierV2NFTDescriptor}
/// 2. {SablierV2LockupDynamic}
Expand Down
1 change: 0 additions & 1 deletion script/DeployDeterministicCore.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ contract DeployDeterministicCore is BaseScript {
bytes32 salt = bytes32(abi.encodePacked(create2Salt));
comptroller = new SablierV2Comptroller{ salt: salt }(initialAdmin);
nftDescriptor = new SablierV2NFTDescriptor{ salt: salt }();
// forgefmt: disable-next-line
lockupDynamic =
new SablierV2LockupDynamic{ salt: salt }(initialAdmin, comptroller, nftDescriptor, maxSegmentCount);
lockupLinear = new SablierV2LockupLinear{ salt: salt }(initialAdmin, comptroller, nftDescriptor);
Expand Down
1 change: 0 additions & 1 deletion script/DeployDeterministicCore2.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ contract DeployDeterministicCore2 is BaseScript {
{
bytes32 salt = bytes32(abi.encodePacked(create2Salt));
comptroller = new SablierV2Comptroller{ salt: salt }(initialAdmin);
// forgefmt: disable-next-line
lockupDynamic =
new SablierV2LockupDynamic{ salt: salt }(initialAdmin, comptroller, nftDescriptor, maxSegmentCount);
lockupLinear = new SablierV2LockupLinear{ salt: salt }(initialAdmin, comptroller, nftDescriptor);
Expand Down
5 changes: 2 additions & 3 deletions script/DeployDeterministicCore3.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import { SablierV2LockupLinear } from "../src/SablierV2LockupLinear.sol";

import { BaseScript } from "./Base.s.sol";

/// @notice Deploys all V2 Core contracts at deterministic addresses across chains, in the following order:
/// @notice Deploys these contracts at deterministic addresses across chains, in the following order:
///
/// 1. {SablierV2Comptroller}
/// 1. {SablierV2NFTDescriptor}
/// 2. {SablierV2LockupDynamic}
/// 3. {SablierV2LockupLinear}
///
Expand All @@ -35,7 +35,6 @@ contract DeployDeterministicCore3 is BaseScript {
{
bytes32 salt = bytes32(abi.encodePacked(create2Salt));
nftDescriptor = new SablierV2NFTDescriptor{ salt: salt }();
// forgefmt: disable-next-line
lockupDynamic =
new SablierV2LockupDynamic{ salt: salt }(initialAdmin, comptroller, nftDescriptor, maxSegmentCount);
lockupLinear = new SablierV2LockupLinear{ salt: salt }(initialAdmin, comptroller, nftDescriptor);
Expand Down

0 comments on commit 767d0f7

Please sign in to comment.