Skip to content

Commit dd6ab67

Browse files
committed
Fix bug in use of CKDh.
Signed-off-by: Daira-Emma Hopwood <[email protected]>
1 parent d1c9f7b commit dd6ab67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zcash_test_vectors/orchard/key_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def master(cls, S):
6666
return cls(chaincode, sk)
6767

6868
def child(self, i):
69-
(sk_i, c_i) = CKDh(self.Orchard, self.data, self.chaincode, i, b"", False)
69+
(sk_i, c_i) = CKDh(self.Orchard, self.data, self.chaincode, i, 0, b"")
7070
return self.__class__(c_i, sk_i)
7171

7272

0 commit comments

Comments
 (0)