fix: resolves #41

This commit is contained in:
bartosz-lipinski 2021-01-22 22:12:17 -06:00
parent 1694eadbad
commit d67b410bfa
1 changed files with 6 additions and 5 deletions

View File

@ -1,9 +1,10 @@
export enum LendingInstruction {
InitLendingMarket = 0,
InitReserve = 1,
DepositReserveLiquidity = 2,
WithdrawReserveLiquidity = 3,
BorrowLiquidity = 4,
RepayOblogationLiquidity = 5,
LiquidateObligation = 6,
InitObligation = 2,
DepositReserveLiquidity = 3,
WithdrawReserveLiquidity = 4,
BorrowLiquidity = 5,
RepayOblogationLiquidity = 6,
LiquidateObligation = 7,
}