Use uint64_t for chainID

This commit is contained in:
pscott
2021-08-26 13:02:07 +02:00
parent 832c7de51e
commit b2172e4627
8 changed files with 54 additions and 36 deletions

View File

@@ -60,7 +60,7 @@ typedef enum chain_kind_e {
typedef struct chain_config_s {
char coinName[10]; // ticker
uint32_t chainId;
uint64_t chainId;
chain_kind_t kind;
} chain_config_t;