Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bugrazoid committed Mar 6, 2023
1 parent b008ce3 commit 42c8781
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions frame/utility/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,9 @@ pub mod pallet {
/// - `calls`: The calls to be dispatched from the same origin. The number of call must not
/// exceed the constant: `batched_calls_limit` (available in constant metadata).
///
/// If origin is root then the calls are dispatched without checking origin filter. (This
/// includes bypassing `frame_system::Config::BaseCallFilter`).
/// If the source is root, then calls are sent without checking the origin and call filters.
/// (This involves bypassing `frame_system::Config::BaseCallFilter` and
/// `Config::CallFilter`).
///
/// ## Complexity
/// - O(C) where C is the number of calls to be batched.
Expand Down Expand Up @@ -307,8 +308,9 @@ pub mod pallet {
/// - `calls`: The calls to be dispatched from the same origin. The number of call must not
/// exceed the constant: `batched_calls_limit` (available in constant metadata).
///
/// If origin is root then the calls are dispatched without checking origin filter. (This
/// includes bypassing `frame_system::Config::BaseCallFilter`).
/// If the source is root, then calls are sent without checking the origin and call filters.
/// (This involves bypassing `frame_system::Config::BaseCallFilter` and
/// `Config::CallFilter`).
///
/// ## Complexity
/// - O(C) where C is the number of calls to be batched.
Expand Down Expand Up @@ -419,8 +421,9 @@ pub mod pallet {
/// - `calls`: The calls to be dispatched from the same origin. The number of call must not
/// exceed the constant: `batched_calls_limit` (available in constant metadata).
///
/// If origin is root then the calls are dispatch without checking origin filter. (This
/// includes bypassing `frame_system::Config::BaseCallFilter`).
/// If the source is root, then calls are sent without checking the origin and call filters.
/// (This involves bypassing `frame_system::Config::BaseCallFilter` and
/// `Config::CallFilter`).
///
/// ## Complexity
/// - O(C) where C is the number of calls to be batched.
Expand Down

0 comments on commit 42c8781

Please sign in to comment.