Skip to content

Commit

Permalink
log hash
Browse files Browse the repository at this point in the history
  • Loading branch information
philsippl committed Jan 14, 2025
1 parent 7092d44 commit 8fe2680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iris-mpc-gpu/src/server/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ impl ServerActor {

// Compute hash of the request ids concatenated
let batch_hash = sha256_bytes(&batch.request_ids.join(""));
tracing::info!("Current batch hash: 0x{}", hex::encode(batch_hash));
tracing::info!("Current batch hash: {}", hex::encode(&batch_hash[0..4]));

let valid_entries =
self.sync_batch_entries(&batch.valid_entries, self.max_batch_size, &batch_hash)?;
Expand Down

0 comments on commit 8fe2680

Please sign in to comment.