Skip to content

Commit ef291d7

Browse files
committed
Clippy fix
1 parent 71dc477 commit ef291d7

File tree

1 file changed

+1
-1
lines changed
  • pallets/transaction-storage/src

1 file changed

+1
-1
lines changed

pallets/transaction-storage/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ pub mod pallet {
880880
/// This is equivalent to `validate_unsigned` but for signed transactions. It should be
881881
/// called from a `SignedExtension` implementation.
882882
pub fn validate_signed(who: &T::AccountId, call: &Call<T>) -> TransactionValidity {
883-
Ok(Self::check_signed(who, call, false)?)
883+
Self::check_signed(who, call, false)
884884
}
885885

886886
/// Check the validity of the given call, signed by the given account, and consume

0 commit comments

Comments
 (0)