add method: fn send_xt<C: Encode>(xt: UncheckedExtrinsic<C>, xt_status: XtStatus)
#90
Labels
fn send_xt<C: Encode>(xt: UncheckedExtrinsic<C>, xt_status: XtStatus)
#90
We always hex encode extrinsics on our own before sending them.
we could use
sp_core::Bytes
type as parameter type to the json requests =Struct Bytes(Vec<u8>)
, which has custom serialization that prepends0x
. Then we can simply pass the encoded value of the extrinsicThe text was updated successfully, but these errors were encountered: