* Add storage mining pool * Set gossip port * Add create-storage-mining-pool-account wallet command * Add claim-storage-reward wallet command * Create storage account upfront * Add storage program to genesis * Use STORAGE_ACCOUNT_SPACE * Fix tests * Add wallet commands to create validator/replicator storage accounts * Add create_validator_storage_account() * Storage stage no longer implicitly creates a storage account
33 lines
594 B
Rust
33 lines
594 B
Rust
mod accounts;
|
|
pub mod accounts_db;
|
|
mod accounts_index;
|
|
pub mod append_vec;
|
|
pub mod bank;
|
|
pub mod bank_client;
|
|
mod blockhash_queue;
|
|
pub mod bloom;
|
|
pub mod epoch_schedule;
|
|
pub mod genesis_utils;
|
|
pub mod loader_utils;
|
|
pub mod locked_accounts_results;
|
|
pub mod message_processor;
|
|
mod native_loader;
|
|
pub mod stakes;
|
|
mod status_cache;
|
|
mod system_instruction_processor;
|
|
|
|
#[macro_use]
|
|
extern crate solana_metrics;
|
|
|
|
#[macro_use]
|
|
extern crate solana_vote_program;
|
|
|
|
#[macro_use]
|
|
extern crate solana_stake_program;
|
|
|
|
#[macro_use]
|
|
extern crate solana_storage_program;
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|