From ddfe7651ea7f015466c19bc49cc669695a9e623e Mon Sep 17 00:00:00 2001 From: surbhi Date: Tue, 11 Nov 2025 13:37:10 -0400 Subject: [PATCH] initial amount scaling bug fix --- script/DeployMock.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/DeployMock.sol b/script/DeployMock.sol index 6dd369d..60791f7 100644 --- a/script/DeployMock.sol +++ b/script/DeployMock.sol @@ -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 );