Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gui1117 committed Nov 15, 2024
1 parent a1af8ed commit b545457
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion substrate/frame/support/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1883,11 +1883,16 @@ pub mod pallet_macros {
/// }
/// ```
///
/// Please note that this only works for signed dispatchables and requires a signed
/// Please note that this only works for signed dispatchables and requires a transaction
/// extension such as [`pallet_skip_feeless_payment::SkipCheckIfFeeless`] to wrap the
/// existing payment extension. Else, this is completely ignored and the dispatchable is
/// still charged.
///
/// Also this will not allow accountless caller to send a transaction if some transaction
/// extension such as [`frame_system::CheckNonce`] is used.
/// Extensions such as [`frame_system::CheckNonce`] require a funded account to validate the
/// transaction.
///
/// ### Macro expansion
///
/// The macro implements the [`pallet_skip_feeless_payment::CheckIfFeeless`] trait on the
Expand Down

0 comments on commit b545457

Please sign in to comment.