Skip to content

Commit

Permalink
Nit
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Oct 29, 2023
1 parent 4d76ccf commit 1c827aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/core/src/method_handler/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ pub(crate) async fn call_client_method_internal(client: &Client, method: ClientM
Response::OutputIdsResponse(client.anchor_output_ids(query_parameters).await?)
}
ClientMethod::AnchorOutputId { anchor_id } => Response::OutputId(client.anchor_output_id(anchor_id).await?),
ClientMethod::DelegationOutputId { delegation_id } => {
Response::OutputId(client.delegation_output_id(delegation_id).await?)
}
ClientMethod::DelegationOutputIds { query_parameters } => {
Response::OutputIdsResponse(client.delegation_output_ids(query_parameters).await?)
}
ClientMethod::DelegationOutputId { delegation_id } => {
Response::OutputId(client.delegation_output_id(delegation_id).await?)
}
ClientMethod::FoundryOutputIds { query_parameters } => {
Response::OutputIdsResponse(client.foundry_output_ids(query_parameters).await?)
}
Expand Down

0 comments on commit 1c827aa

Please sign in to comment.