pub trait SignedTransactionBuilder: ExtrinsicCall {
type Address;
type Signature;
type Extension;
// Required method
fn new_signed_transaction(
call: Self::Call,
signed: Self::Address,
signature: Self::Signature,
tx_ext: Self::Extension,
) -> Self;
}
Expand description
Interface for types capable of constructing a signed transaction.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.