Skip to content

Commit

Permalink
chore: fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Nov 19, 2024
1 parent fd4ab2d commit ff1e003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blueprints/examples/src/services_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ pub async fn handle_job(
.cloned()
.collect::<Vec<AccountId32>>();
let restaking_delegations = context
.get_operator_delegations(&client, operators.clone())
.operator_delegations(&client, operators.clone())
.await
.unwrap();
let operators_metadata = context
.get_operators_metadata(&client, operators)
.operators_metadata(&client, operators)
.await
.unwrap();
Ok(0)
Expand Down

0 comments on commit ff1e003

Please sign in to comment.