mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
Authoring with WASM runtime
This commit is contained in:
@@ -252,7 +252,15 @@ pub mod api {
|
||||
finalise_block => |()| super::Executive::finalise_block(),
|
||||
inherent_extrinsics => |inherent| super::inherent_extrinsics(inherent),
|
||||
validator_count => |()| super::Session::validator_count(),
|
||||
validators => |()| super::Session::validators()
|
||||
validators => |()| super::Session::validators(),
|
||||
duty_roster => |()| super::Parachains::calculate_duty_roster(),
|
||||
active_parachains => |()| super::Parachains::active_parachains(),
|
||||
parachain_head => |id| super::Parachains::parachain_head(&id),
|
||||
parachain_code => |id| super::Parachains::parachain_code(&id),
|
||||
timestamp => |()| super::Timestamp::get(),
|
||||
random_seed => |()| super::System::random_seed(),
|
||||
account_nonce => |account| super::System::account_nonce(&account),
|
||||
lookup_address => |address| super::Staking::lookup_address(address)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user