1 2 3 4 5 6 7
use crate::*; use async_trait::async_trait; #[async_trait] pub trait Submitter: Send + Sync { async fn submit_tx(&self, tx_hex: &str) -> Result<String, WError>; }