From b0c61e832c25009f351ee4d8432c9a3cabeed7d3 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Tue, 9 Aug 2022 11:39:09 -0700 Subject: [PATCH] Correct StakeInstruction::DeactivateDelinquent instruction type --- transaction-status/src/parse_stake.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transaction-status/src/parse_stake.rs b/transaction-status/src/parse_stake.rs index dfa3e9608a..d7da25b173 100644 --- a/transaction-status/src/parse_stake.rs +++ b/transaction-status/src/parse_stake.rs @@ -276,7 +276,7 @@ pub fn parse_stake( StakeInstruction::DeactivateDelinquent => { check_num_stake_accounts(&instruction.accounts, 3)?; Ok(ParsedInstructionEnum { - instruction_type: "deactivateDeactive".to_string(), + instruction_type: "deactivateDelinquent".to_string(), info: json!({ "stakeAccount": account_keys[instruction.accounts[0] as usize].to_string(), "voteAccount": account_keys[instruction.accounts[1] as usize].to_string(),