Add convenience methods to VoteInstruction to distinguish vote types (#28526)
* Add convenience methods to VoteInstruction to distinguish vote types * use matches! macro instead
This commit is contained in:
parent
ff18bb3a06
commit
9eafad467c
|
@ -53,16 +53,15 @@ impl LatestValidatorVotePacket {
|
||||||
.ok_or(DeserializedPacketError::VoteTransactionError)?;
|
.ok_or(DeserializedPacketError::VoteTransactionError)?;
|
||||||
|
|
||||||
match limited_deserialize::<VoteInstruction>(&instruction.data) {
|
match limited_deserialize::<VoteInstruction>(&instruction.data) {
|
||||||
Ok(VoteInstruction::UpdateVoteState(vote_state_update))
|
Ok(vote_state_update_instruction)
|
||||||
| Ok(VoteInstruction::UpdateVoteStateSwitch(vote_state_update, _))
|
if vote_state_update_instruction.is_single_vote_state_update() =>
|
||||||
| Ok(VoteInstruction::CompactUpdateVoteState(vote_state_update))
|
{
|
||||||
| Ok(VoteInstruction::CompactUpdateVoteStateSwitch(vote_state_update, _)) => {
|
|
||||||
let &pubkey = message
|
let &pubkey = message
|
||||||
.message
|
.message
|
||||||
.static_account_keys()
|
.static_account_keys()
|
||||||
.get(0)
|
.get(0)
|
||||||
.ok_or(DeserializedPacketError::VoteTransactionError)?;
|
.ok_or(DeserializedPacketError::VoteTransactionError)?;
|
||||||
let slot = vote_state_update.last_voted_slot().unwrap_or(0);
|
let slot = vote_state_update_instruction.last_voted_slot().unwrap_or(0);
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
vote: Some(vote),
|
vote: Some(vote),
|
||||||
|
|
|
@ -105,7 +105,7 @@ impl VoteTransaction {
|
||||||
|
|
||||||
pub fn last_voted_slot(&self) -> Option<Slot> {
|
pub fn last_voted_slot(&self) -> Option<Slot> {
|
||||||
match self {
|
match self {
|
||||||
VoteTransaction::Vote(vote) => vote.slots.last().copied(),
|
VoteTransaction::Vote(vote) => vote.last_voted_slot(),
|
||||||
VoteTransaction::VoteStateUpdate(vote_state_update)
|
VoteTransaction::VoteStateUpdate(vote_state_update)
|
||||||
| VoteTransaction::CompactVoteStateUpdate(vote_state_update) => {
|
| VoteTransaction::CompactVoteStateUpdate(vote_state_update) => {
|
||||||
vote_state_update.last_voted_slot()
|
vote_state_update.last_voted_slot()
|
||||||
|
|
|
@ -23,15 +23,7 @@ pub(crate) fn is_simple_vote_transaction(transaction: &SanitizedTransaction) ->
|
||||||
if program_pubkey == &solana_vote_program::id() {
|
if program_pubkey == &solana_vote_program::id() {
|
||||||
if let Ok(vote_instruction) = limited_deserialize::<VoteInstruction>(&instruction.data)
|
if let Ok(vote_instruction) = limited_deserialize::<VoteInstruction>(&instruction.data)
|
||||||
{
|
{
|
||||||
return matches!(
|
return vote_instruction.is_simple_vote();
|
||||||
vote_instruction,
|
|
||||||
VoteInstruction::Vote(_)
|
|
||||||
| VoteInstruction::VoteSwitch(_, _)
|
|
||||||
| VoteInstruction::UpdateVoteState(_)
|
|
||||||
| VoteInstruction::UpdateVoteStateSwitch(_, _)
|
|
||||||
| VoteInstruction::CompactUpdateVoteState(_)
|
|
||||||
| VoteInstruction::CompactUpdateVoteStateSwitch(..)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
use {
|
use {
|
||||||
crate::{
|
crate::{
|
||||||
|
clock::Slot,
|
||||||
hash::Hash,
|
hash::Hash,
|
||||||
instruction::{AccountMeta, Instruction},
|
instruction::{AccountMeta, Instruction},
|
||||||
pubkey::Pubkey,
|
pubkey::Pubkey,
|
||||||
|
@ -147,6 +148,45 @@ pub enum VoteInstruction {
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl VoteInstruction {
|
||||||
|
pub fn is_simple_vote(&self) -> bool {
|
||||||
|
matches!(
|
||||||
|
self,
|
||||||
|
Self::Vote(_)
|
||||||
|
| Self::VoteSwitch(_, _)
|
||||||
|
| Self::UpdateVoteState(_)
|
||||||
|
| Self::UpdateVoteStateSwitch(_, _)
|
||||||
|
| Self::CompactUpdateVoteState(_)
|
||||||
|
| Self::CompactUpdateVoteStateSwitch(_, _),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn is_single_vote_state_update(&self) -> bool {
|
||||||
|
matches!(
|
||||||
|
self,
|
||||||
|
Self::UpdateVoteState(_)
|
||||||
|
| Self::UpdateVoteStateSwitch(_, _)
|
||||||
|
| Self::CompactUpdateVoteState(_)
|
||||||
|
| Self::CompactUpdateVoteStateSwitch(_, _),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Only to be used on vote instructions (guard with is_simple_vote), panics otherwise
|
||||||
|
pub fn last_voted_slot(&self) -> Option<Slot> {
|
||||||
|
assert!(self.is_simple_vote());
|
||||||
|
match self {
|
||||||
|
Self::Vote(v) | Self::VoteSwitch(v, _) => v.last_voted_slot(),
|
||||||
|
Self::UpdateVoteState(vote_state_update)
|
||||||
|
| Self::UpdateVoteStateSwitch(vote_state_update, _)
|
||||||
|
| Self::CompactUpdateVoteState(vote_state_update)
|
||||||
|
| Self::CompactUpdateVoteStateSwitch(vote_state_update, _) => {
|
||||||
|
vote_state_update.last_voted_slot()
|
||||||
|
}
|
||||||
|
_ => panic!("Tried to get slot on non simple vote instruction"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn initialize_account(vote_pubkey: &Pubkey, vote_init: &VoteInit) -> Instruction {
|
fn initialize_account(vote_pubkey: &Pubkey, vote_init: &VoteInit) -> Instruction {
|
||||||
let account_metas = vec![
|
let account_metas = vec![
|
||||||
AccountMeta::new(*vote_pubkey, false),
|
AccountMeta::new(*vote_pubkey, false),
|
||||||
|
|
|
@ -50,6 +50,10 @@ impl Vote {
|
||||||
timestamp: None,
|
timestamp: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn last_voted_slot(&self) -> Option<Slot> {
|
||||||
|
self.slots.last().copied()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Default, Deserialize, Debug, PartialEq, Eq, Copy, Clone, AbiExample)]
|
#[derive(Serialize, Default, Deserialize, Debug, PartialEq, Eq, Copy, Clone, AbiExample)]
|
||||||
|
|
Loading…
Reference in New Issue