Fix typo in traits.rs (#2971)

Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com>
This commit is contained in:
Samuel Moelius
2024-01-18 04:15:00 -05:00
committed by GitHub
parent f8954093b4
commit d6c0f1531d
+1 -1
View File
@@ -1790,7 +1790,7 @@ pub trait ValidateUnsigned {
/// this code before the unsigned extrinsic enters the transaction pool and also periodically
/// afterwards to ensure the validity. To prevent dos-ing a network with unsigned
/// extrinsics, these validity checks should include some checks around uniqueness, for example,
/// like checking that the unsigned extrinsic was send by an authority in the active set.
/// checking that the unsigned extrinsic was sent by an authority in the active set.
///
/// Changes made to storage should be discarded by caller.
fn validate_unsigned(source: TransactionSource, call: &Self::Call) -> TransactionValidity;