Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cellframe/libdap-chain
1 result
Show changes
Commits on Source (1)
......@@ -41,6 +41,8 @@
#define DAP_CHAIN_TIMESTAMP_SIZE 8
#define DAP_CHAIN_TICKER_SIZE_MAX 10
#define DATOSHI_LD 1000000000.0L
// Chain ID of the whole system
typedef union dap_chain_id {
uint8_t raw[DAP_CHAIN_ID_SIZE];
......
......@@ -115,7 +115,7 @@ typedef struct dap_ledger_wallet_balance {
//dap_ledger_wallet_balance_key_t key;
char *key;
char token_ticker[10];
uint64_t balance;
uint128_t balance;
UT_hash_handle hh;
} dap_ledger_wallet_balance_t;
......