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