solana_vote_program/
lib.rs

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