pub trait Signer<AccountId, Lookup> {
// Required method
fn signer(&self, lookup: &Lookup) -> Option<AccountId>;
}
Expand description
Extracts the signer from an unchecked extrinsic.
Used by executor to extract the optional signer when shuffling the extrinsics.