Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Sep 7, 2023
1 parent 4397302 commit dc5fe88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/src/monitors/deploymentBalanceMonitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class DeploymentBalanceMonitor {

const balance = response.data.escrow_account.balance;
const funds = response.data.escrow_account.funds;
const isAktDenom = balance.denom === activeChain.denom && balance.denom === activeChain.udenom;
const isAktDenom = balance.denom === activeChain.denom || balance.denom === activeChain.udenom;

if (!balance || !funds || !isAktDenom) {
return null;
Expand Down

0 comments on commit dc5fe88

Please sign in to comment.