Skip to content

Commit

Permalink
Don't crash pods
Browse files Browse the repository at this point in the history
  • Loading branch information
plusminushalf committed Dec 8, 2024
1 parent b0a2e67 commit 0c5e7c2
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/executor/senderManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,14 @@ export class SenderManager {
},
"utility wallet has insufficient balance to refill wallets"
)
throw new Error(
`utility wallet ${
this.utilityAccount.address
} has insufficient balance ${formatEther(
utilityWalletBalance
)} < ${formatEther(totalBalanceMissing)}`
)
return
// throw new Error(
// `utility wallet ${
// this.utilityAccount.address
// } has insufficient balance ${formatEther(
// utilityWalletBalance
// )} < ${formatEther(totalBalanceMissing)}`
// )
}

if (Object.keys(balancesMissing).length > 0) {
Expand Down

0 comments on commit 0c5e7c2

Please sign in to comment.