Struct frame_system::pallet::Pallet[][src]

pub struct Pallet<T>(_);

Implementations

impl<T: Config> Pallet<T>[src]

pub fn set_code(
    origin: OriginFor<T>,
    code: Vec<u8>
) -> DispatchResultWithPostInfo
[src]

Set the new runtime code.

  • O(C + S) where C length of code and S complexity of can_set_code
  • 1 storage write (codec O(C)).
  • 1 call to can_set_code: O(S) (calls sp_io::misc::runtime_version which is expensive).
  • 1 event. The weight of this function is dependent on the runtime, but generally this is very expensive. We will treat this as a full block.

pub fn set_code_without_checks(
    origin: OriginFor<T>,
    code: Vec<u8>
) -> DispatchResultWithPostInfo
[src]

Set the new runtime code without doing any checks of the given code.

  • O(C) where C length of code
  • 1 storage write (codec O(C)).
  • 1 event. The weight of this function is dependent on the runtime. We will treat this as a full block.

pub fn set_changes_trie_config(
    origin: OriginFor<T>,
    changes_trie_config: Option<ChangesTrieConfiguration>
) -> DispatchResultWithPostInfo
[src]

Set the new changes trie configuration.

  • O(1)
  • 1 storage write or delete (codec O(1)).
  • 1 call to deposit_log: Uses append API, so O(1)
  • Base Weight: 7.218 µs
  • DB Weight:
    • Writes: Changes Trie, System Digest

impl<T: Config> Pallet<T>[src]

pub fn account<KArg>(k: KArg) -> AccountInfo<T::Index, T::AccountData> where
    KArg: EncodeLike<T::AccountId>, 
[src]

The full account information for a particular account ID.

impl<T: Config> Pallet<T>[src]

pub fn block_weight() -> ConsumedWeight[src]

The current weight for the block.

impl<T: Config> Pallet<T>[src]

pub fn block_hash<KArg>(k: KArg) -> T::Hash where
    KArg: EncodeLike<T::BlockNumber>, 
[src]

Map of block numbers to block hashes.

impl<T: Config> Pallet<T>[src]

pub fn extrinsic_data<KArg>(k: KArg) -> Vec<u8> where
    KArg: EncodeLike<u32>, 
[src]

Extrinsics data for the current block (maps an extrinsic's index to its data).

impl<T: Config> Pallet<T>[src]

pub fn block_number() -> T::BlockNumber[src]

The current block number being processed. Set by execute_block.

impl<T: Config> Pallet<T>[src]

pub fn parent_hash() -> T::Hash[src]

Hash of the previous block.

impl<T: Config> Pallet<T>[src]

pub fn digest() -> DigestOf<T>[src]

Digest of the current block, also part of the block header.

impl<T: Config> Pallet<T>[src]

pub fn events() -> Vec<EventRecord<T::Event, T::Hash>>[src]

Events deposited for the current block.

impl<T: Config> Pallet<T>[src]

pub fn event_count() -> u32[src]

The number of events in the Events<T> list.

impl<T: Config> Pallet<T>[src]

pub fn event_topics<KArg>(k: KArg) -> Vec<(T::BlockNumber, u32)> where
    KArg: EncodeLike<T::Hash>, 
[src]

Mapping between a topic (represented by T::Hash) and a vector of indexes of events in the <Events<T>> list.

All topic vectors have deterministic storage locations depending on the topic. This allows light-clients to leverage the changes trie storage tracking mechanism and in case of changes fetch the list of events of interest.

The value has the type (T::BlockNumber, EventIndex) because if we used only just the EventIndex then in case if the topic has the same contents on the next block no notification will be triggered thus the event might be lost.

impl<T: Config> Pallet<T>[src]

pub fn account_exists(who: &T::AccountId) -> bool[src]

pub fn inc_ref(who: &T::AccountId)[src]

👎 Deprecated:

Use inc_consumers instead

Increment the reference counter on an account.

pub fn dec_ref(who: &T::AccountId)[src]

👎 Deprecated:

Use dec_consumers instead

Decrement the reference counter on an account. This MUST only be done once for every time you called inc_consumers on who.

pub fn refs(who: &T::AccountId) -> RefCount[src]

👎 Deprecated:

Use consumers instead

The number of outstanding references for the account who.

pub fn allow_death(who: &T::AccountId) -> bool[src]

👎 Deprecated:

Use !is_provider_required instead

True if the account has no outstanding references.

pub fn inc_providers(who: &T::AccountId) -> IncRefStatus[src]

Increment the reference counter on an account.

The account who's providers must be non-zero or this will return an error.

pub fn dec_providers(who: &T::AccountId) -> Result<DecRefStatus, DecRefError>[src]

Decrement the reference counter on an account. This MUST only be done once for every time you called inc_consumers on who.

pub fn providers(who: &T::AccountId) -> RefCount[src]

The number of outstanding references for the account who.

pub fn inc_consumers(who: &T::AccountId) -> Result<(), IncRefError>[src]

Increment the reference counter on an account.

The account who's providers must be non-zero or this will return an error.

pub fn dec_consumers(who: &T::AccountId)[src]

Decrement the reference counter on an account. This MUST only be done once for every time you called inc_consumers on who.

pub fn consumers(who: &T::AccountId) -> RefCount[src]

The number of outstanding references for the account who.

pub fn is_provider_required(who: &T::AccountId) -> bool[src]

True if the account has some outstanding references.

pub fn deposit_event(event: impl Into<T::Event>)[src]

Deposits an event into this block's event record.

pub fn deposit_event_indexed(topics: &[T::Hash], event: T::Event)[src]

Deposits an event into this block's event record adding this event to the corresponding topic indexes.

This will update storage entries that correspond to the specified topics. It is expected that light-clients could subscribe to this topics.

pub fn extrinsic_index() -> Option<u32>[src]

Gets the index of extrinsic that is currently executing.

pub fn extrinsic_count() -> u32[src]

Gets extrinsics count.

pub fn all_extrinsics_len() -> u32[src]

pub fn register_extra_weight_unchecked(weight: Weight, class: DispatchClass)[src]

Inform the system pallet of some additional weight that should be accounted for, in the current block.

NOTE: use with extra care; this function is made public only be used for certain pallets that need it. A runtime that does not have dynamic calls should never need this and should stick to static weights. A typical use case for this is inner calls or smart contract calls. Furthermore, it only makes sense to use this when it is presumably cheap to provide the argument weight; In other words, if this function is to be used to account for some unknown, user provided call's weight, it would only make sense to use it if you are sure you can rapidly compute the weight of the inner call.

Even more dangerous is to note that this function does NOT take any action, if the new sum of block weight is more than the block weight limit. This is what the unchecked.

Another potential use-case could be for the on_initialize and on_finalize hooks.

pub fn initialize(
    number: &T::BlockNumber,
    parent_hash: &T::Hash,
    digest: &DigestOf<T>,
    kind: InitKind
)
[src]

Start the execution of a particular block.

pub fn finalize() -> T::Header[src]

Remove temporary "environment" entries in storage, compute the storage root and return the resulting header for this block.

pub fn deposit_log(item: DigestItemOf<T>)[src]

Deposits a log and ensures it matches the block's log data.

  • O(1)
  • 1 storage write (codec O(1))

pub fn externalities() -> TestExternalities[src]

Get the basic externalities for this pallet, useful for tests.

pub fn set_block_number(n: T::BlockNumber)[src]

Set the block number to something in particular. Can be used as an alternative to initialize for tests that don't need to bother with the other environment entries.

pub fn set_extrinsic_index(extrinsic_index: u32)[src]

Sets the index of extrinsic that is currently executing.

pub fn set_parent_hash(n: T::Hash)[src]

Set the parent hash number to something in particular. Can be used as an alternative to initialize for tests that don't need to bother with the other environment entries.

pub fn set_block_consumed_resources(weight: Weight, len: usize)[src]

Set the current block weight. This should only be used in some integration tests.

pub fn reset_events()[src]

Reset events. Can be used as an alternative to initialize for tests that don't need to bother with the other environment entries.

pub fn runtime_version() -> RuntimeVersion[src]

Return the chain's current runtime version.

pub fn account_nonce(who: impl EncodeLike<T::AccountId>) -> T::Index[src]

Retrieve the account transaction counter from storage.

pub fn inc_account_nonce(who: impl EncodeLike<T::AccountId>)[src]

Increment a particular account's nonce by 1.

pub fn note_extrinsic(encoded_xt: Vec<u8>)[src]

Note what the extrinsic data of the current extrinsic index is.

This is required to be called before applying an extrinsic. The data will used in Self::finalize to calculate the correct extrinsics root.

pub fn note_applied_extrinsic(
    r: &DispatchResultWithPostInfo,
    mut info: DispatchInfo
)
[src]

To be called immediately after an extrinsic has been applied.

pub fn note_finished_extrinsics()[src]

To be called immediately after note_applied_extrinsic of the last extrinsic of the block has been called.

pub fn note_finished_initialize()[src]

To be called immediately after finishing the initialization of the block (e.g., called on_initialize for all pallets).

pub fn on_created_account(
    who: T::AccountId,
    _a: &mut AccountInfo<T::Index, T::AccountData>
)
[src]

An account is being created.

pub fn can_set_code(code: &[u8]) -> Result<(), DispatchError>[src]

Determine whether or not it is possible to update the code.

Checks the given code if it is a valid runtime wasm blob by instantianting it and extracting the runtime version of it. It checks that the runtime version of the old and new runtime has the same spec name and that the spec version is increasing.

Trait Implementations

impl<T: Config> BlockNumberProvider for Pallet<T>[src]

type BlockNumber = <T as Config>::BlockNumber

Type of BlockNumber to provide.

impl<T: Config> Callable<T> for Pallet<T>[src]

type Call = Call<T>

impl<T> Clone for Pallet<T>[src]

impl<T> Debug for Pallet<T>[src]

impl<T> Eq for Pallet<T>[src]

impl<T: Config> GetPalletVersion for Pallet<T>[src]

impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>[src]

impl<T: Config> IntegrityTest for Pallet<T>[src]

impl<T: Config> ModuleErrorMetadata for Pallet<T>[src]

impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>[src]

impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>[src]

impl<T: Config> OnGenesis for Pallet<T>[src]

impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>[src]

impl<T: Config> OnRuntimeUpgrade for Pallet<T>[src]

impl<T> PartialEq<Pallet<T>> for Pallet<T>[src]

impl<T: Config> StoredMap<<T as Config>::AccountId, <T as Config>::AccountData> for Pallet<T>[src]

Implement StoredMap for a simple single-item, provide-when-not-default system. This works fine for storing a single item which allows the account to continue existing as long as it's not empty/default.

Anything more complex will need more sophisticated logic.

Auto Trait Implementations

impl<T> RefUnwindSafe for Pallet<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Pallet<T> where
    T: Send
[src]

impl<T> Sync for Pallet<T> where
    T: Sync
[src]

impl<T> Unpin for Pallet<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Pallet<T> where
    T: UnwindSafe
[src]

Blanket Implementations

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> CheckedConversion for T[src]

impl<T> DynClone for T where
    T: Clone
[src]

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

impl<T> Instrument for T[src]

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

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

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Member for T where
    T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 

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