difftreelog
Cargo fmt
in: master
1 file changed
pallets/scheduler/src/lib.rsdiffbeforeafterboth54//! 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 block55//! Maybe_periodic limit is 100 calls55//! Maybe_periodic limit is 100 calls56//! 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//! ## Interface59//!59//!60//! ### Dispatchable Functions60//! ### Dispatchable Functions276 count: u32,276 count: u32,277 ) -> Result<(), DispatchError>;277 ) -> Result<(), DispatchError>;278278279 /// Unlock centain amount from payer 279 /// Unlock centain amount from payer280 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 paid501 0501 0502 }502 }503 }503 }