Skip to content

Commit

Permalink
proper error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ParthDesai committed Dec 3, 2024
1 parent c27c568 commit dca3c6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describeSuite({
const tx = await gatewayContract.sendOperatorsData(rawValidators, 1);
await tx.wait();
} catch (error) {
throw new Error(`Failed to create vault: ${error.message}`, error.code);
throw new Error(`Failed to send operator data: ${error.message}`, error.code);
}

// wait some time for the data to be relayed
Expand Down

0 comments on commit dca3c6e

Please sign in to comment.