Skip to content

Commit

Permalink
[libc] refs skycoin#105 Correcting bad definitions in cipher.bip32.path
Browse files Browse the repository at this point in the history
  • Loading branch information
Maykel Arias Torres committed Aug 14, 2019
1 parent 1e164ff commit cb2cc7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added datatype `WalletRecoverRequest__Handle`
- Added datatype `PublicKey__Handle`
- Added datatype `PrivateKey__Handle`
- Added datatype `Path`
- Added datatype `PathNode`

### Removed

Expand Down
8 changes: 4 additions & 4 deletions include/cipher.bip32.path.go.h
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;

0 comments on commit cb2cc7f

Please sign in to comment.