Skip to content

Commit

Permalink
fixed references in enableTrading script
Browse files Browse the repository at this point in the history
  • Loading branch information
yudilevi committed Dec 28, 2023
1 parent 8c54664 commit 637a895
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/enableTrading.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface EnvOptions {
}

const { ENABLE_TRADING: enableTrading }: EnvOptions = process.env as any as EnvOptions;

interface TokenData {
address: string;
ethVirtualBalance: Decimal;
Expand Down Expand Up @@ -144,8 +143,8 @@ const main = async () => {
args: [
token,
{
ethAmount: ethVirtualBalance.toFixed().toString(),
tokenAmount: tokenVirtualBalance.toFixed().toString()
sourceAmount: ethVirtualBalance.toFixed().toString(),
targetAmount: tokenVirtualBalance.toFixed().toString()
}
],
from: deployer.address
Expand Down

0 comments on commit 637a895

Please sign in to comment.