From 0466dabd7bd45dfcbb2e945166db890d1984de70 Mon Sep 17 00:00:00 2001 From: Dylan Molina <86082012+dylanintech@users.noreply.github.com> Date: Wed, 14 Dec 2022 14:23:16 -0600 Subject: [PATCH] Fixed a very small typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6bc6a61..e4dcaba 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ There are a few files in utils: - The `niceList.json` which contains all the names of the people who deserve a gift this year (this is randomly generated, feel free to add yourself and others to this list!) - The `example.js` script shows how we can generate a root, generate a proof and verify that some value is in the root using the proof. Try it out from the top-level folder with `node/example.js` - The `MerkleTree.js` should look familiar from the Merkle Tree module! This one has been modified so you should not have to deal with any crypto type conversion. You can import this in your client/server -- The `verifyProof.js` should also look familiar. This was the last stage in the module. You can use this function to prove a name is in the merkle root, as show in the example. +- The `verifyProof.js` should also look familiar. This was the last stage in the module. You can use this function to prove a name is in the merkle root, as shown in the example.