Skip to content

Commit

Permalink
fix: recover allocation ID instead of indexer ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Oct 14, 2023
1 parent 125cb2a commit 2be261b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions service/src/query_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,8 @@ mod tests {
},
);

assert_eq!(
attestation_signer.verify(&attestation, request, response, &indexer),
Ok(())
);
attestation_signer
.verify(&attestation, request, response, &allocation.id)
.unwrap();
}
}

0 comments on commit 2be261b

Please sign in to comment.