git.delta.rocks / unique-network / refs/commits / f75f9ea94c90

difftreelog

Cargo fmt

Dev2022-07-11parent: #efc3398.patch.diff
in: master

1 file changed

modifiedpallets/scheduler/src/lib.rsdiffbeforeafterboth
54//! Priority limited by HARD DEADLINE (<= 63). Calls over maximum weight don't include to block54//! Priority limited by HARD DEADLINE (<= 63). Calls over maximum weight don't include to block
55//! Maybe_periodic limit is 100 calls55//! Maybe_periodic limit is 100 calls
56//! Any account allowed to schedule any calls. Account withdraw implemented through default transaction logic.56//! Any account allowed to schedule any calls. Account withdraw implemented through default transaction logic.
57//! 57//!
58//! ## Interface58//! ## Interface
59//!59//!
60//! ### Dispatchable Functions60//! ### Dispatchable Functions
276 count: u32,276 count: u32,
277 ) -> Result<(), DispatchError>;277 ) -> Result<(), DispatchError>;
278278
279 /// Unlock centain amount from payer 279 /// Unlock centain amount from payer
280 fn pay_for_call(280 fn pay_for_call(
281 id: ScheduledId,281 id: ScheduledId,
282 sponsor: <T as frame_system::Config>::AccountId,282 sponsor: <T as frame_system::Config>::AccountId,
497 Agenda::<T>::append(wake, Some(s));497 Agenda::<T>::append(wake, Some(s));
498 }498 }
499 }499 }
500 /// Weight should be 0, because transaction already paid 500 /// Weight should be 0, because transaction already paid
501 0501 0
502 }502 }
503 }503 }