Trait frame_system::offchain::SendSignedTransaction [−][src]
pub trait SendSignedTransaction<T: SigningTypes + CreateSignedTransaction<LocalCall>, C: AppCrypto<T::Public, T::Signature>, LocalCall> { type Result; fn send_signed_transaction(
&self,
f: impl Fn(&Account<T>) -> LocalCall
) -> Self::Result; fn send_single_signed_transaction(
&self,
account: &Account<T>,
call: LocalCall
) -> Option<Result<(), ()>> { ... } }
Expand description
Submit a signed transaction to the transaction pool.
Associated Types
Required methods
fn send_signed_transaction(
&self,
f: impl Fn(&Account<T>) -> LocalCall
) -> Self::Result
fn send_signed_transaction(
&self,
f: impl Fn(&Account<T>) -> LocalCall
) -> Self::Result
Submit a signed transaction to the local pool.
Given f
closure will be called for every requested account and expects a Call
object
to be returned.
The call is then wrapped into a transaction (see #CreateSignedTransaction
), signed and
submitted to the pool.
Provided methods
Implementors
impl<T: CreateSignedTransaction<LocalCall> + SigningTypes, C: AppCrypto<T::Public, T::Signature>, LocalCall> SendSignedTransaction<T, C, LocalCall> for Signer<T, C, ForAny>
impl<T: SigningTypes + CreateSignedTransaction<LocalCall>, C: AppCrypto<T::Public, T::Signature>, LocalCall> SendSignedTransaction<T, C, LocalCall> for Signer<T, C, ForAll>