Removed gh actions dbg

This commit is contained in:
Daniel Sanchez Quiros 2022-09-30 07:55:40 +02:00
parent 101cc8e6c2
commit 597aceab33

View File

@ -21,12 +21,8 @@ pub fn waku_new(config: Option<NodeConfig>) -> Result<bool> {
}
.to_str()
.expect("Response should always succeed to load to a &str");
let json_response: JsonResponse<bool> = serde_json::from_str(result)
.map_err(|e| {
dbg!(&e, result);
e
})
.expect("JsonResponse should always succeed to deserialize");
let json_response: JsonResponse<bool> =
serde_json::from_str(result).expect("JsonResponse should always succeed to deserialize");
json_response.into()
}