Fix streaming verification example in README (#1269)

This commit is contained in:
will Farrell 2021-03-29 07:46:02 -06:00 committed by GitHub
parent 5299561aa3
commit 5016cd5677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -561,7 +561,7 @@ Using the private key:
// even if you don't need it, as that is what triggers the
// verification of the data.
const { valid } = verified.signatures[0];
const valid = await verified.signatures[0].verified;
if (valid) {
console.log('signed by key id ' + verified.signatures[0].keyID.toHex());
} else {