forked from fibercrypto/libskyfiber
-
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.
[include] refs fibercrypto#116 Correcting parse to
make format-libc
- Loading branch information
Maykel Arias Torres
committed
Jan 29, 2020
1 parent
190d33d
commit 88ca0cc
Showing
9 changed files
with
27 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
typedef struct{ | ||
GoInt8_ decode[128]; | ||
GoUint8_ encode[58]; | ||
typedef struct { | ||
GoInt8_ decode[128]; | ||
GoUint8_ encode[58]; | ||
} base58__Alphabet; |
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,4 +1,4 @@ | ||
typedef struct{ | ||
typedef struct { | ||
GoInt32_ _unnamed; | ||
bool impossibleChild; | ||
} bip32__Error; |
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,16 +1,16 @@ | ||
typedef struct{ | ||
typedef struct { | ||
GoString_ Coins; | ||
GoString_ Hours; | ||
} cli__Balance; | ||
typedef struct{ | ||
typedef struct { | ||
cli__Balance Confirmed; | ||
cli__Balance Spendable; | ||
cli__Balance Expected; | ||
GoString_ Address; | ||
} cli__AddressBalances; | ||
typedef struct{ | ||
typedef struct { | ||
cli__Balance Confirmed; | ||
cli__Balance Spendable; | ||
cli__Balance Expected; | ||
GoSlice_ Addresses; | ||
GoSlice_ Addresses; | ||
} cli__BalanceResult; |
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,17 +1,17 @@ | ||
typedef struct{ | ||
typedef struct { | ||
GoString_ DataDir; | ||
GoString_ Coin; | ||
GoString_ RPCAddress; | ||
GoString_ RPCUsername; | ||
GoString_ RPCPassword; | ||
} cli__Config; | ||
typedef struct{ | ||
typedef struct { | ||
GoInt32_ _unnamed; | ||
} cli__WalletLoadError; | ||
typedef struct{ | ||
typedef struct { | ||
GoInt32_ _unnamed; | ||
} cli__WalletSaveError; | ||
typedef GoInterface_ cli__PasswordReader; | ||
typedef GoSlice_ cli__PasswordFromBytes; | ||
typedef struct{ | ||
typedef GoSlice_ cli__PasswordFromBytes; | ||
typedef struct { | ||
} cli__PasswordFromTerm; |
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,20 +1,20 @@ | ||
typedef struct{ | ||
typedef struct { | ||
GoString_ Addr; | ||
GoUint64_ Coins; | ||
} cli__SendAmount; | ||
typedef struct{ | ||
typedef struct { | ||
GoString_ Addr; | ||
GoString_ Coins; | ||
} cli__sendAmountJSON; | ||
typedef struct{ | ||
typedef struct { | ||
GoString_ Wallet; | ||
GoString_ Address; | ||
} cli__walletAddress; | ||
typedef GoInterface_ cli__GetOutputser; | ||
typedef struct{ | ||
typedef struct { | ||
GoString_ WalletID; | ||
GoString_ Address; | ||
GoString_ ChangeAddress; | ||
GoSlice_ SendAmounts; | ||
GoSlice_ SendAmounts; | ||
cli__PasswordReader Password; | ||
} cli__createRawTxnArgs; |
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,3 +1,3 @@ | ||
typedef struct{ | ||
typedef struct { | ||
readable__UnspentOutputsSummary Outputs; | ||
} cli__OutputsResult; |
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,17 +1,17 @@ | ||
typedef struct{ | ||
typedef struct { | ||
GoUint64_ Time; | ||
GoUint64_ BkSeq; | ||
} coin__UxHead; | ||
typedef struct{ | ||
typedef struct { | ||
cipher__SHA256 SrcTransaction; | ||
cipher__Address Address; | ||
GoUint64_ Coins; | ||
GoUint64_ Hours; | ||
} coin__UxBody; | ||
typedef GoMap_ coin__UxHashSet; | ||
typedef GoSlice_ coin__UxArray; | ||
typedef GoSlice_ coin__UxArray; | ||
typedef GoMap_ coin__AddressUxOuts; | ||
typedef struct{ | ||
typedef struct { | ||
coin__UxHead Head; | ||
coin__UxBody Body; | ||
} coin__UxOut; |
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,8 +1,8 @@ | ||
typedef struct{ | ||
typedef struct { | ||
GoUint64_ MaxCoinSupply; | ||
GoUint64_ InitialUnlockedCount; | ||
GoUint64_ UnlockAddressRate; | ||
GoUint64_ UnlockTimeInterval; | ||
GoSlice_ Addresses; | ||
GoSlice_ addressesDecoded; | ||
GoSlice_ Addresses; | ||
GoSlice_ addressesDecoded; | ||
} params__Distribution; |
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,4 +1,4 @@ | ||
typedef struct{ | ||
typedef struct { | ||
cipher__SHA256 Hash; | ||
GoUint64_ BkSeq; | ||
GoUint64_ Time; | ||
|