Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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