solana_vote_program/
lib.rs

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