From 5016cd5677ffd0b0473a93b6538e7e9d487f8b36 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Mon, 29 Mar 2021 07:46:02 -0600 Subject: [PATCH] Fix streaming verification example in README (#1269) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 265ba089..a64d0f19 100644 --- a/README.md +++ b/README.md @@ -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 {