pub trait ConvertTransaction<E> {
// Required method
fn convert_transaction(&self, transaction: TransactionV3) -> E;
}Expand description
Fallback transaction converter when the ConvertTransactionRuntimeApi is not available. For almost all
non-legacy cases, you can instantiate this type as NoTransactionConverter.