Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
s1na committed Sep 13, 2019
1 parent 949d9e8 commit 1d356ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multiproof.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ async function _makeMultiproof(
throw new Error('Expected 1 remaining key')
}
if (matchingNibbleLength(keys[0], root.key) !== root.key.length) {
throw new Error('Leaf key doesn\'t match target key')
throw new Error("Leaf key doesn't match target key")
}
// TODO: Check key matches leaf's key
proof = {
Expand Down

0 comments on commit 1d356ee

Please sign in to comment.