Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
0xodia committed Jul 12, 2023
1 parent 98c6d41 commit b3dc84e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion solend-sdk/src/core/utils/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { fetchPrices } from "./prices";
import { calculateBorrowInterest, calculateSupplyInterest } from "./rates";
import { PoolType, ReserveType } from "../types";
import { parseReserve, Reserve } from "../../state";
import { parseRateLimiter, remainingOutflow } from "./utils";
import { parseRateLimiter } from "./utils";

export async function fetchPools(
oldPools: Array<PoolType>,
Expand Down
3 changes: 1 addition & 2 deletions solend-sdk/src/core/utils/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Connection, PublicKey } from "@solana/web3.js";
import { ParsedRateLimiter, RateLimiter, RateLimiterConfig } from "../../state/rateLimiter";
import { RateLimiter } from "../../state/rateLimiter";
import BigNumber from "bignumber.js";
import BN from "bn.js";

const ADDRESS_PREFIX_SUFFIX_LENGTH = 6;

Expand Down

0 comments on commit b3dc84e

Please sign in to comment.