Skip to content

Commit

Permalink
feat: addressing partial notes PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Oct 3, 2024
1 parent 91942ee commit 1629a35
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ async function handlePartialNote<T>(
daoConstructor,
);
} catch (e) {
// We ignore the key prefix error because that is expected to be triggered when an incorrect value
// is inserted at the position of `npk_m_hash`. This happens commonly because we are brute forcing
// the unencrypted logs.
if (!(e as any).message.includes('Could not find key prefix.')) {
throw e;
}
Expand Down

0 comments on commit 1629a35

Please sign in to comment.