Struct solana_core::validator::ValidatorConfig[][src]

pub struct ValidatorConfig {
    pub dev_halt_at_slot: Option<Slot>,
    pub expected_genesis_hash: Option<Hash>,
    pub expected_bank_hash: Option<Hash>,
    pub expected_shred_version: Option<u16>,
    pub voting_disabled: bool,
    pub account_paths: Vec<PathBuf>,
    pub account_shrink_paths: Option<Vec<PathBuf>>,
    pub rpc_config: JsonRpcConfig,
    pub rpc_addrs: Option<(SocketAddr, SocketAddr)>,
    pub pubsub_config: PubSubConfig,
    pub snapshot_config: Option<SnapshotConfig>,
    pub max_ledger_shreds: Option<u64>,
    pub broadcast_stage_type: BroadcastStageType,
    pub enable_partition: Option<Arc<AtomicBool>>,
    pub enforce_ulimit_nofile: bool,
    pub fixed_leader_schedule: Option<FixedSchedule>,
    pub wait_for_supermajority: Option<Slot>,
    pub new_hard_forks: Option<Vec<Slot>>,
    pub trusted_validators: Option<HashSet<Pubkey>>,
    pub repair_validators: Option<HashSet<Pubkey>>,
    pub gossip_validators: Option<HashSet<Pubkey>>,
    pub halt_on_trusted_validators_accounts_hash_mismatch: bool,
    pub accounts_hash_fault_injection_slots: u64,
    pub frozen_accounts: Vec<Pubkey>,
    pub no_rocksdb_compaction: bool,
    pub rocksdb_compaction_interval: Option<u64>,
    pub rocksdb_max_compaction_jitter: Option<u64>,
    pub accounts_hash_interval_slots: u64,
    pub max_genesis_archive_unpacked_size: u64,
    pub wal_recovery_mode: Option<BlockstoreRecoveryMode>,
    pub poh_verify: bool,
    pub cuda: bool,
    pub require_tower: bool,
    pub debug_keys: Option<Arc<HashSet<Pubkey>>>,
    pub contact_debug_interval: u64,
    pub contact_save_interval: u64,
    pub bpf_jit: bool,
    pub send_transaction_retry_ms: u64,
    pub send_transaction_leader_forward_count: u64,
    pub no_poh_speed_test: bool,
    pub poh_pinned_cpu_core: usize,
    pub poh_hashes_per_batch: u64,
    pub account_indexes: HashSet<AccountIndex>,
    pub accounts_db_caching_enabled: bool,
    pub warp_slot: Option<Slot>,
    pub accounts_db_test_hash_calculation: bool,
    pub accounts_db_use_index_hash_calculation: bool,
    pub tpu_coalesce_ms: u64,
    pub validator_exit: Arc<RwLock<ValidatorExit>>,
    pub no_wait_for_vote_to_start_leader: bool,
}

Fields

dev_halt_at_slot: Option<Slot>expected_genesis_hash: Option<Hash>expected_bank_hash: Option<Hash>expected_shred_version: Option<u16>voting_disabled: boolaccount_paths: Vec<PathBuf>account_shrink_paths: Option<Vec<PathBuf>>rpc_config: JsonRpcConfigrpc_addrs: Option<(SocketAddr, SocketAddr)>pubsub_config: PubSubConfigsnapshot_config: Option<SnapshotConfig>max_ledger_shreds: Option<u64>broadcast_stage_type: BroadcastStageTypeenable_partition: Option<Arc<AtomicBool>>enforce_ulimit_nofile: boolfixed_leader_schedule: Option<FixedSchedule>wait_for_supermajority: Option<Slot>new_hard_forks: Option<Vec<Slot>>trusted_validators: Option<HashSet<Pubkey>>repair_validators: Option<HashSet<Pubkey>>gossip_validators: Option<HashSet<Pubkey>>halt_on_trusted_validators_accounts_hash_mismatch: boolaccounts_hash_fault_injection_slots: u64frozen_accounts: Vec<Pubkey>no_rocksdb_compaction: boolrocksdb_compaction_interval: Option<u64>rocksdb_max_compaction_jitter: Option<u64>accounts_hash_interval_slots: u64max_genesis_archive_unpacked_size: u64wal_recovery_mode: Option<BlockstoreRecoveryMode>poh_verify: boolcuda: boolrequire_tower: booldebug_keys: Option<Arc<HashSet<Pubkey>>>contact_debug_interval: u64contact_save_interval: u64bpf_jit: boolsend_transaction_retry_ms: u64send_transaction_leader_forward_count: u64no_poh_speed_test: boolpoh_pinned_cpu_core: usizepoh_hashes_per_batch: u64account_indexes: HashSet<AccountIndex>accounts_db_caching_enabled: boolwarp_slot: Option<Slot>accounts_db_test_hash_calculation: boolaccounts_db_use_index_hash_calculation: booltpu_coalesce_ms: u64validator_exit: Arc<RwLock<ValidatorExit>>no_wait_for_vote_to_start_leader: bool

Trait Implementations

impl Debug for ValidatorConfig[src]

impl Default for ValidatorConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiExample for T[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]