[−][src]Trait frame_system::offchain::SubmitUnsignedTransaction
A trait to submit unsigned transactions in off-chain calls.
Associated Types
type Extrinsic: ExtrinsicT<Call = Call> + Encode
Unchecked extrinsic type.
Provided methods
fn submit_unsigned(call: impl Into<Call>) -> Result<(), ()>
Submit given call to the transaction pool as unsigned transaction.
Returns Ok
if the transaction was submitted correctly
and Err
if transaction was rejected from the pool.
Implementors
impl<T, E, S, C, Call> SubmitUnsignedTransaction<T, Call> for TransactionSubmitter<S, C, E> where
T: Trait,
E: ExtrinsicT<Call = Call> + Encode,
[src]
T: Trait,
E: ExtrinsicT<Call = Call> + Encode,
A blanket impl to use the same submitter for usigned transactions as well.