initial amount scaling bug fix

This commit is contained in:
2025-11-11 13:37:10 -04:00
parent 108d49c2b8
commit ddfe7651ea

View File

@@ -75,7 +75,7 @@ contract DeployMock is Script {
msg.sender, // payer: this script
DEV_ACCOUNT_7, // receiver of initial LP
initialDeposits,
10_000 * 10*18,
10_000 * 10**18,
0
);
@@ -119,7 +119,7 @@ contract DeployMock is Script {
msg.sender, // payer: this script
DEV_ACCOUNT_7, // receiver of initial LP
initialDeposits,
10_000 * 10*18,
10_000 * 10**18,
0
);
@@ -159,7 +159,7 @@ contract DeployMock is Script {
msg.sender, // payer: this script
DEV_ACCOUNT_7, // receiver of initial LP
initialDeposits,
10_000 * 10*18,
10_000 * 10**18,
0
);