Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Dec 16, 2024
1 parent e5d9ddb commit a70655f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dex/fluid-dex/fluid-dex-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ export class FluidDexEventPool extends StatefulEventSubscriber<PoolState> {
);

const isSwapAndArbitragePaused =
BigInt(storageResults[0].returnData.toString()) >> BigInt(255) ===
BigInt(1);
BigInt(storageResults[0].returnData.toString()) >> 255n === 1n;

return { isSwapAndArbitragePaused };
}
Expand Down

0 comments on commit a70655f

Please sign in to comment.