Skip to content

Commit

Permalink
Clean up codes
Browse files Browse the repository at this point in the history
  • Loading branch information
JOOHOJANG committed Oct 22, 2024
1 parent e5321c4 commit 6d5ece1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/sdk/src/api/converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ function toVersionVector(vector?: VersionVector): PbVersionVector | undefined {

const pbVector = new PbVersionVector();
for (const [actorID, lamport] of vector) {
// TODO(hackerwins): Remove Long after introducing BigInt.
pbVector.vector[actorID] = BigInt(lamport.toString());
}
return pbVector;
Expand Down

0 comments on commit 6d5ece1

Please sign in to comment.