summaryrefslogtreecommitdiffstats
path: root/tool/src/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src/commands/mod.rs')
-rw-r--r--tool/src/commands/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/src/commands/mod.rs b/tool/src/commands/mod.rs
index 0771b50e..01264cbb 100644
--- a/tool/src/commands/mod.rs
+++ b/tool/src/commands/mod.rs
@@ -322,8 +322,7 @@ impl<'a> VHelper<'a> {
impl<'a> VerificationHelper for VHelper<'a> {
fn get_public_keys(&mut self, ids: &[openpgp::KeyHandle]) -> Result<Vec<Cert>> {
let mut certs = self.certs.take().unwrap();
- // Get all keys. Even if a key is revoked or expired, we can
- // still use it to verify a message.
+ // Get all keys.
let seen: HashSet<_> = certs.iter()
.flat_map(|cert| {
cert.keys().map(|key| key.fingerprint().into())