[][src]Trait substrate_subxt::system::SetCodeCallExt

pub trait SetCodeCallExt<T: Runtime + System> {
    fn set_code<'a>(
        &'a self,
        signer: &'a (dyn Signer<T> + Send + Sync),
        code: &'a [u8]
    ) -> Pin<Box<dyn Future<Output = Result<T::Hash, Error>> + Send + 'a>>;
fn set_code_and_watch<'a>(
        &'a self,
        signer: &'a (dyn Signer<T> + Send + Sync),
        code: &'a [u8]
    ) -> Pin<Box<dyn Future<Output = Result<ExtrinsicSuccess<T>, Error>> + Send + 'a>>; }

Call extension trait.

Required methods

fn set_code<'a>(
    &'a self,
    signer: &'a (dyn Signer<T> + Send + Sync),
    code: &'a [u8]
) -> Pin<Box<dyn Future<Output = Result<T::Hash, Error>> + Send + 'a>>

Create and submit an extrinsic.

fn set_code_and_watch<'a>(
    &'a self,
    signer: &'a (dyn Signer<T> + Send + Sync),
    code: &'a [u8]
) -> Pin<Box<dyn Future<Output = Result<ExtrinsicSuccess<T>, Error>> + Send + 'a>>

Create, submit and watch an extrinsic.

Loading content...

Implementors

impl<T: Runtime + System> SetCodeCallExt<T> for Client<T> where
    <<T::Extra as SignedExtra<T>>::Extra as SignedExtension>::AdditionalSigned: Send + Sync
[src]

Loading content...