use crate::lightclient::LightClient;
use super::conduct_chain::ConductChain;
pub struct LiveChain;
impl ConductChain for LiveChain {
async fn setup() -> Self {
Self {}
}
async fn create_faucet(&mut self) -> LightClient {
unimplemented!()
}
fn zingo_config(&mut self) -> crate::config::ZingoConfig {
todo!()
}
async fn bump_chain(&mut self) {
tokio::time::sleep(std::time::Duration::from_secs(150)).await;
}
fn lightserver_uri(&self) -> Option<http::Uri> {
unimplemented!()
}
}