Struct solana_program::fee_calculator::FeeRateGovernor
source · pub struct FeeRateGovernor {
pub lamports_per_signature: u64,
pub target_lamports_per_signature: u64,
pub target_signatures_per_slot: u64,
pub min_lamports_per_signature: u64,
pub max_lamports_per_signature: u64,
pub burn_percent: u8,
}
Fields§
§lamports_per_signature: u64
§target_lamports_per_signature: u64
§target_signatures_per_slot: u64
§min_lamports_per_signature: u64
§max_lamports_per_signature: u64
§burn_percent: u8
Implementations§
source§impl FeeRateGovernor
impl FeeRateGovernor
pub fn new( target_lamports_per_signature: u64, target_signatures_per_slot: u64 ) -> Self
pub fn new_derived( base_fee_rate_governor: &FeeRateGovernor, latest_signatures_per_slot: u64 ) -> Self
pub fn clone_with_lamports_per_signature( &self, lamports_per_signature: u64 ) -> Self
sourcepub fn burn(&self, fees: u64) -> (u64, u64)
pub fn burn(&self, fees: u64) -> (u64, u64)
calculate unburned fee from a fee total, returns (unburned, burned)
sourcepub fn create_fee_calculator(&self) -> FeeCalculator
pub fn create_fee_calculator(&self) -> FeeCalculator
create a FeeCalculator based on current cluster signature throughput
Trait Implementations§
source§impl AbiExample for FeeRateGovernor
impl AbiExample for FeeRateGovernor
source§impl Clone for FeeRateGovernor
impl Clone for FeeRateGovernor
source§fn clone(&self) -> FeeRateGovernor
fn clone(&self) -> FeeRateGovernor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FeeRateGovernor
impl Debug for FeeRateGovernor
source§impl Default for FeeRateGovernor
impl Default for FeeRateGovernor
source§impl<'de> Deserialize<'de> for FeeRateGovernor
impl<'de> Deserialize<'de> for FeeRateGovernor
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<FeeRateGovernor> for FeeRateGovernor
impl PartialEq<FeeRateGovernor> for FeeRateGovernor
source§fn eq(&self, other: &FeeRateGovernor) -> bool
fn eq(&self, other: &FeeRateGovernor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.