Skip to content

Commit ffa0623

Browse files
Fix formatting issues in ping_client.rs
Co-Authored-By: Ian Clarke <[email protected]>
1 parent e18362f commit ffa0623

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

apps/freenet-ping/app/src/ping_client.rs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,16 @@ pub async fn wait_for_put_response(
5656
return Err("unexpected key".into());
5757
}
5858
}
59-
Ok(Ok(HostResponse::ContractResponse(ContractResponse::UpdateResponse { key, summary }))) => {
59+
Ok(Ok(HostResponse::ContractResponse(ContractResponse::UpdateResponse {
60+
key,
61+
summary,
62+
}))) => {
6063
if &key == expected_key {
61-
tracing::info!("Received update response for key: {}, summary: {:?}", key, summary);
64+
tracing::info!(
65+
"Received update response for key: {}, summary: {:?}",
66+
key,
67+
summary
68+
);
6269
return Ok(key);
6370
} else {
6471
return Err("unexpected key".into());

0 commit comments

Comments
 (0)