mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-12 14:09:25 +00:00
12 lines
201 B
Rust
12 lines
201 B
Rust
|
|
pub use crate::P2p;
|
||
|
|
|
||
|
|
#[derive(Clone, Debug)]
|
||
|
|
pub struct DummyP2p;
|
||
|
|
|
||
|
|
#[async_trait::async_trait]
|
||
|
|
impl P2p for DummyP2p {
|
||
|
|
async fn broadcast(&self, _: [u8; 32], _: Vec<u8>) {
|
||
|
|
unimplemented!()
|
||
|
|
}
|
||
|
|
}
|