mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-02-17 19:53:05 +00:00
8 lines
211 B
Rust
8 lines
211 B
Rust
use async_trait::async_trait;
|
|
use testing_framework_core::scenario::DynError;
|
|
|
|
#[async_trait]
|
|
pub trait NodeControlHandle: Send + Sync {
|
|
async fn restart_node(&self, index: usize) -> Result<(), DynError>;
|
|
}
|