Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
acolytec3 committed Jul 9, 2024
1 parent 256e19b commit 0efa9c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/verkle/test/leafNode.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe('verkle node - leaf', () => {
node.setValue(0, setLengthLeft(Uint8Array.from([5]), 32))
assert.deepEqual(node.getValue(0), setLengthLeft(Uint8Array.from([5]), 32))
node.setValue(0, VerkleLeafNodeValue.Deleted)
assert.equal(node.getValue(0), undefined)
assert.deepEqual(node.getValue(0), new Uint8Array(32))
})

it('should update a commitment when setting a value', async () => {
Expand Down

0 comments on commit 0efa9c5

Please sign in to comment.