1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::imports::*;

#[derive(Default, Handler)]
#[help("Ping the connected node")]
pub struct Ping;

impl Ping {
    async fn main(self: Arc<Self>, ctx: &Arc<dyn Context>, _argv: Vec<String>, _cmd: &str) -> Result<()> {
        let ctx = ctx.clone().downcast_arc::<KaspaCli>()?;
        if ctx.wallet().ping(None).await.is_ok() {
            tprintln!(ctx, "ping ok");
        } else {
            terrorln!(ctx, "ping error");
        }
        Ok(())
    }
}