forked from skycoin/libskycoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc] refs skycoin#105 Correcting bad definitions in cipher.bip32.path
- Loading branch information
Maykel Arias Torres
committed
Aug 14, 2019
1 parent
1e164ff
commit cb2cc7f
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
typedef struct { | ||
GoSlice_ Elements; | ||
GoSlice_ Elements; // Goslice de PathNote | ||
} Path; | ||
|
||
// PathNode is an element of an HD wallet path | ||
typedef struct PathNode { | ||
bool Master; | ||
typedef struct { | ||
BOOL Master; | ||
GoUint32_ ChildNumber; | ||
} | ||
} PathNode; |