Skip to content

Commit 0cdd1e5

Browse files
authored
Update Node.java
1 parent bbbbb17 commit 0cdd1e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/Node.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public Node(Node left, Node right, byte[] hash) {
1515
}
1616

1717
public Node(Stakeholder stakeholder) {
18-
this(null, null, stakeholder, SHA2(stakeholder.toBytes()));
18+
this(null, null, stakeholder, Fts.SHA2(stakeholder.toBytes()));
1919
}
2020

2121
public boolean isLeaf() {

0 commit comments

Comments
 (0)