Skip to content

Commit

Permalink
Correct StakeInstruction::DeactivateDelinquent instruction type
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Aug 9, 2022
1 parent c2455e7 commit b0c61e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transaction-status/src/parse_stake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit b0c61e8

Please sign in to comment.