styling consistency
This commit is contained in:
@@ -19,7 +19,7 @@ contract DeployMock is Script {
|
||||
function run() public {
|
||||
vm.startBroadcast();
|
||||
|
||||
// create mock tokens
|
||||
// create mock _tokens
|
||||
usxd = new MockERC20('Joke Currency', 'USXD', 6);
|
||||
fusd = new MockERC20('Fake USD', 'FUSD', 6);
|
||||
dive = new MockERC20('DAI Virtually Equal', 'DIVE', 18);
|
||||
@@ -41,7 +41,7 @@ contract DeployMock is Script {
|
||||
// deploy a PartyPlanner factory and create the pool via factory
|
||||
PartyPlanner planner = Deploy.newPartyPlanner();
|
||||
|
||||
// prepare initial deposits (10_000 units of each token, scaled by bases)
|
||||
// prepare initial deposits (10_000 units of each token, scaled by _bases)
|
||||
uint256[] memory initialDeposits = new uint256[](3);
|
||||
initialDeposits[0] = _bases[0] * 10_000;
|
||||
initialDeposits[1] = _bases[1] * 10_000;
|
||||
@@ -49,7 +49,7 @@ contract DeployMock is Script {
|
||||
uint256 initialLpAmount = 0;
|
||||
uint256 deadline = 0;
|
||||
|
||||
// mint tokens to the deployer so it can fund the initial deposits and approve the factory
|
||||
// mint _tokens to the deployer so it can fund the initial deposits and approve the factory
|
||||
mintAll(msg.sender, 10_000);
|
||||
|
||||
// approve factory to move initial deposits
|
||||
@@ -75,7 +75,7 @@ contract DeployMock is Script {
|
||||
deadline
|
||||
);
|
||||
|
||||
// give tokens to dev7 for later use
|
||||
// give _tokens to dev7 for later use
|
||||
mintAll(DEV_ACCOUNT_7, 1_000_000);
|
||||
|
||||
vm.stopBroadcast();
|
||||
|
||||
Reference in New Issue
Block a user