Skip to content

Commit

Permalink
come on
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Mar 5, 2024
1 parent 540aabf commit 79f1f6c
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 @@ -76,16 +76,12 @@ impl Client {
futures::future::join_all(output_ids.iter().map(|id| self.get_output_with_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()
}
}

0 comments on commit 79f1f6c

Please sign in to comment.