pub(crate) trait SubmitDataSourceErased {
// Required method
fn submit_erased<'life0, 'async_trait>(
&'life0 self,
tx: Transaction,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Network-agnostic submit hook used by the axum wrapper. The original
SubmitDataSource<N, P> trait is parameterized by the network type; this
erased trait lets NodeApiStateImpl avoid carrying those parameters.