Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention that account might still be required in doc for feeless if. #6490

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
Loading