Skip to content

Commit

Permalink
debug: log error in startAll
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Dec 5, 2023
1 parent e9ae2d8 commit c02e13e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/libs/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ async function start(fundAddresses = [], chains = [], options = {}) {
const { startAll } = require('@axelar-network/axelar-local-dev-cosmos');

// Spin up cosmos chains in docker containers
await startAll();
await startAll().catch((e) => {
console.log(e);
});

const ibcRelayer = await IBCRelayerService.create();
// Setup IBC Channels. This command will take a while to complete. (should be around 2-3 mins)
Expand Down

0 comments on commit c02e13e

Please sign in to comment.