Skip to content

Commit

Permalink
fix ondo client
Browse files Browse the repository at this point in the history
  • Loading branch information
amaurel committed Mar 18, 2023
1 parent f66a19c commit 57020a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/ondo-client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut client = OndoRemoteClient::connect(addr).await?;
let request = Request::new(EmptyMessage{});
let response = client.version(request).await?;
println!("response: {}", response.into_inner().version);
println!("response: {:?}", response.into_inner());

Ok(())
}

0 comments on commit 57020a6

Please sign in to comment.