Skip to content

Commit

Permalink
docs: remove an outdated comment (#5387)
Browse files Browse the repository at this point in the history
Description
---
Removes an outdated comment, in what is possibly the silliest and
smallest PR.

Motivation and Context
---
A comment was outdated.

How Has This Been Tested?
---
It hasn't.

What process can a PR reviewer use to test or verify this change?
---
Look for the comment. Find that it has vanished. Contemplate the
consequences.
  • Loading branch information
AaronFeickert authored May 17, 2023
1 parent b944ef3 commit 9ad6144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comms/dht/src/inbound/decryption.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ where S: Service<DecryptedDhtMessage, Response = (), Error = PipelineError>
let sender_masked_public_key = validated_msg
.authenticated_origin()
.ok_or(DecryptionError::MessageRejectDecryptionFailed)?;
let sender_public_key = mask_inverse * sender_masked_public_key; // TODO: compute this using the mask inverse!
let sender_public_key = mask_inverse * sender_masked_public_key;

trace!(
target: LOG_TARGET,
Expand Down

0 comments on commit 9ad6144

Please sign in to comment.