Skip to content

Commit

Permalink
fix: boolean flags (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra authored Jul 1, 2024
1 parent 8ed77ef commit a823028
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/storage/poolStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ export function decodeReserveConfigV3(data: bigint) {
active: !!active,
frozen: !!frozen,
borrowingEnabled: !!borrowingEnabled,
stableRateBorrowingEnabled,
paused,
borrowingInIsolation,
stableRateBorrowingEnabled: !!stableRateBorrowingEnabled,
paused: !!paused,
borrowingInIsolation: !!borrowingInIsolation,
reserveFactor,
borrowCap,
supplyCap,
Expand Down

0 comments on commit a823028

Please sign in to comment.