Skip to content

Commit

Permalink
fix test with random key
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottyPoi committed Sep 20, 2024
1 parent 59041a3 commit a3aa958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/portalnetwork/test/util/db.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const keyVals: {
value: Uint8Array
}[] = Array.from({ length }, () => {
return {
key: randomBytes(33),
key: Uint8Array.from([0x05, ...randomBytes(32)]),
value: randomBytes(1000),
}
})
Expand Down

0 comments on commit a3aa958

Please sign in to comment.