initial amount scaling bug fix
This commit is contained in:
@@ -75,7 +75,7 @@ contract DeployMock is Script {
|
|||||||
msg.sender, // payer: this script
|
msg.sender, // payer: this script
|
||||||
DEV_ACCOUNT_7, // receiver of initial LP
|
DEV_ACCOUNT_7, // receiver of initial LP
|
||||||
initialDeposits,
|
initialDeposits,
|
||||||
10_000 * 10*18,
|
10_000 * 10**18,
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -119,7 +119,7 @@ contract DeployMock is Script {
|
|||||||
msg.sender, // payer: this script
|
msg.sender, // payer: this script
|
||||||
DEV_ACCOUNT_7, // receiver of initial LP
|
DEV_ACCOUNT_7, // receiver of initial LP
|
||||||
initialDeposits,
|
initialDeposits,
|
||||||
10_000 * 10*18,
|
10_000 * 10**18,
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -159,7 +159,7 @@ contract DeployMock is Script {
|
|||||||
msg.sender, // payer: this script
|
msg.sender, // payer: this script
|
||||||
DEV_ACCOUNT_7, // receiver of initial LP
|
DEV_ACCOUNT_7, // receiver of initial LP
|
||||||
initialDeposits,
|
initialDeposits,
|
||||||
10_000 * 10*18,
|
10_000 * 10**18,
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user