Skip to content

Commit

Permalink
fix update drpType
Browse files Browse the repository at this point in the history
  • Loading branch information
anhnd350309 committed Jan 13, 2025
1 parent c28c30d commit 05398b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/object/src/hashgraph/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class HashGraph {
}

resolveConflicts(vertices: Vertex[]): ResolveConflictsType {
if (vertices.some((vertex) => vertex.operation?.vertexType === "acl")) {
if (vertices.some((vertex) => vertex.operation?.drpType === "ACL")) {
return this.resolveConflictsACL(vertices);
}
return this.resolveConflictsDRP(vertices);
Expand Down

0 comments on commit 05398b2

Please sign in to comment.