From 42b31bfba4a4486d21e6e8d51639fba22b737198 Mon Sep 17 00:00:00 2001 From: 0xCactus <85321734+0xCactus@users.noreply.github.com> Date: Tue, 29 Mar 2022 14:09:27 -0700 Subject: [PATCH] fix init reserve comments (#81) --- token-lending/program/src/instruction.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/token-lending/program/src/instruction.rs b/token-lending/program/src/instruction.rs index f46e05bccda..81065ca004f 100644 --- a/token-lending/program/src/instruction.rs +++ b/token-lending/program/src/instruction.rs @@ -58,12 +58,12 @@ pub enum LendingInstruction { /// 3. `[]` Reserve liquidity SPL Token mint. /// 4. `[writable]` Reserve liquidity supply SPL Token account - uninitialized. /// 5. `[writable]` Reserve liquidity fee receiver - uninitialized. - /// 6. `[]` Pyth product account. - /// 7. `[]` Pyth price account. + /// 6. `[writable]` Reserve collateral SPL Token mint - uninitialized. + /// 7 `[writable]` Reserve collateral token supply - uninitialized. + /// 8. `[]` Pyth product account. + /// 9. `[]` Pyth price account. /// This will be used as the reserve liquidity oracle account. - /// 8. `[]` Switchboard price feed account. used as a backup oracle - /// 9. `[writable]` Reserve collateral SPL Token mint - uninitialized. - /// 10 `[writable]` Reserve collateral token supply - uninitialized. + /// 10. `[]` Switchboard price feed account. used as a backup oracle /// 11 `[]` Lending market account. /// 12 `[]` Derived lending market authority. /// 13 `[signer]` Lending market owner.