wasm fixes

This commit is contained in:
John Smith
2022-10-06 12:39:30 -04:00
parent e77577ba66
commit 1fdcd5ae45
3 changed files with 19 additions and 18 deletions

View File

@@ -8,7 +8,6 @@ impl RPCProcessor {
self,
peer: NodeRef,
) -> Result<NetworkResult<Answer<SenderInfo>>, RPCError> {
info!("ping to {:?}", peer);
let routing_domain = match peer.best_routing_domain() {
Some(rd) => rd,
None => {
@@ -44,7 +43,6 @@ impl RPCProcessor {
},
_ => return Err(RPCError::invalid_format("not an answer")),
};
info!("qwer");
// Ensure the returned node status is the kind for the routing domain we asked for
match routing_domain {
@@ -64,8 +62,6 @@ impl RPCProcessor {
}
}
info!("zxzxv");
// Update latest node status in routing table
peer.update_node_status(status_a.node_status);