Skip to content

Commit

Permalink
Update packages/object/src/hashgraph.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Sacha Froment <[email protected]>
  • Loading branch information
d-roak and sfroment authored Aug 28, 2024
1 parent 42a4179 commit 3640667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/object/src/hashgraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class HashGraph<T> {

if (shouldIncrementI) {
const op = this.vertices.get(order[i])?.operation;
if (op && op?.value !== null) result.push(op);
if (op && op.value !== null) result.push(op);
i++;
}
}
Expand Down

0 comments on commit 3640667

Please sign in to comment.