Skip to content

Commit

Permalink
chore: add prints
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-llimos committed Aug 20, 2024
1 parent 8861c0c commit f06b1b7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bouncer/tests/delta_based_ingress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ async function deltaBasedIngressTest(

await observeFetch(sourceAsset, swapParams.depositAddress);

console.log('Killing the engines');
await killEngines();
await startEngines(localnetInitPath, binariesPath, numberOfNodes);

Expand Down Expand Up @@ -127,6 +128,9 @@ async function deltaBasedIngressTest(
// and check that swap completes.
console.log('Waiting for 40 seconds to ensure no extra swap is being triggered after restart');
await sleep(40000);
console.log(
`Waiting for ${sourceAsset}->${destAsset} DeltaBasedIngressSecondDeposit to complete`,
);
await swapHandle;
swapScheduledHandle.stop();

Expand Down Expand Up @@ -166,7 +170,7 @@ async function main(): Promise<void> {
},
async (args) => {
console.log(
'delta based ingress test subcommand with args: ' + args.bins + ' ' + args.runtime,
'delta based ingress test subcommand with args: ' + args.bins + ' ' + args.localnet_init,
);

await deltaBasedIngressTest(
Expand Down

0 comments on commit f06b1b7

Please sign in to comment.