Skip to content

Commit

Permalink
heh
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Mar 5, 2024
1 parent 3f68c2f commit 540aabf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sdk/src/client/node_api/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,12 @@ impl Client {
futures::future::join_all(output_ids.iter().map(|id| self.get_output_metadata(id)))
.await
.into_iter()
<<<<<<< HEAD
.filter(|res| {
!matches!(
res,
Err(Error::Node(NodeApiError::NotFound(_))) | Err(Error::Node(NodeApiError::ResponseError { .. }))
Err(ClientError::Node(NodeApiError::NotFound(_))) | Err(ClientError::Node(NodeApiError::ResponseError { .. }))
)
})
=======
.filter(|res| !matches!(res, Err(ClientError::Node(NodeApiError::NotFound(_)))))
>>>>>>> 67b7af7a7e5571005a182f0d95904370290daa9d
.collect()
}

Expand Down

0 comments on commit 540aabf

Please sign in to comment.