pub struct RuntimeConfigStore { /* private fields */ }
Expand description

Stores runtime config for each protocol version where it was updated.

Implementations§

source§

impl RuntimeConfigStore

source

pub fn new(genesis_runtime_config: Option<&RuntimeConfig>) -> Self

Constructs a new store.

If genesis_runtime_config is Some, configs for protocol versions 0 and 42 are overridden by this config and config with lowered storage cost, respectively. This is done to preserve compatibility with previous implementation, where we updated runtime config by sequential modifications to the genesis runtime config. calimero_zero_storage flag sets all storages fees to zero by setting storage_amount_per_byte to zero, to keep calimero private shards compatible with future protocol upgrades this is done for all protocol versions TODO #4775: introduce new protocol version to have the same runtime config for all chains

source

pub fn for_chain_id(chain_id: &str) -> Self

Create store of runtime configs for the given chain id.

For mainnet and other chains except testnet we don’t need to override runtime config for first protocol versions. For testnet, runtime config for genesis block was (incorrectly) different, that’s why we need to override it specifically to preserve compatibility.

source

pub fn with_one_config(runtime_config: RuntimeConfig) -> Self

Constructs test store.

source

pub fn test() -> Self

Constructs test store.

source

pub fn free() -> Self

Constructs store with a single config with zero costs.

source

pub fn get_config( &self, protocol_version: ProtocolVersion ) -> &Arc<RuntimeConfig>

Returns a RuntimeConfig for the corresponding protocol version.

Trait Implementations§

source§

impl Clone for RuntimeConfigStore

source§

fn clone(&self) -> RuntimeConfigStore

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RuntimeConfigStore

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.