Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
josojo committed Feb 7, 2024
1 parent b989ae8 commit 7e9aaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/prepareSequencerAfterFork.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async function main() {
console.log('by the following tx: ', tx1.hash);

const splitAmount = await forkonomicToken.balanceOf(deployer.address);
const tx2 = await forkonomicTokenChild.splitTokensIntoChildTokens(splitAmount, { gasLimit: 1000000 });
const tx2 = await forkonomicToken.splitTokensIntoChildTokens(splitAmount, { gasLimit: 1000000 });
await tx2.wait();
console.log('Splitting tokens into their child tokens');
console.log('by the following tx: ', tx2.hash);
Expand Down

0 comments on commit 7e9aaef

Please sign in to comment.