Skip to main content

solana_vote_program/
lib.rs

1#![cfg(feature = "agave-unstable-api")]
2#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
3
4pub mod vote_processor;
5pub mod vote_state;
6
7#[cfg(feature = "frozen-abi")]
8extern crate solana_frozen_abi_macro;
9
10pub use solana_vote_interface::{
11    authorized_voters, error as vote_error, instruction as vote_instruction,
12    program::{check_id, id},
13};