Skip to content

Commit

Permalink
Fix TRC20 list size
Browse files Browse the repository at this point in the history
  • Loading branch information
fbsobreira committed Mar 6, 2019
1 parent 61c45fa commit d001a0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tokens.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const tokenDefinition_t const TOKENS_TRC20[NUM_TOKENS_TRC20] = {
{{0x41,0xF8,0x2D,0x6D,0x39,0x8A,0x9B,0xA0,0xDA,0x8C,0x73,0x84,0xAE,0xA3,0x72,0x30,0xD2,0x68,0xCA,0x28,0x45}, "$PLAY ", 6},
{{0x41,0x8d,0x22,0x24,0x68,0xca,0x88,0xa8,0xbd,0xc5,0x9d,0x03,0x36,0xe6,0x6c,0xb4,0x4c,0xe7,0x93,0xb9,0x10}, "$REWARD ", 6},
{{0x41,0x98,0xf4,0xdb,0x2f,0x43,0x3e,0x98,0xf6,0xd8,0x97,0xd6,0x94,0x57,0x47,0xee,0xa2,0x7f,0xb5,0x97,0x9d}, "$FREE ", 6},
{{0x41,0x14,0x18,0x3f,0x3b,0xbc,0xa4,0xae,0x9f,0xc1,0xde,0x55,0xb9,0xbb,0xe2,0xd0,0x71,0x94,0x2d,0xc1,0xa6}, "CCT ", 6},
{{0x41,0x14,0x18,0x3f,0x3b,0xbc,0xa4,0xae,0x9f,0xc1,0xde,0x55,0xb9,0xbb,0xe2,0xd0,0x71,0x94,0x2d,0xc1,0xa6}, "$CCT ", 6},

};

Expand Down
2 changes: 1 addition & 1 deletion src/tokens.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ typedef struct tokenDefinition_t {
uint8_t decimals;
} tokenDefinition_t;

#define NUM_TOKENS_TRC20 27
#define NUM_TOKENS_TRC20 49

extern tokenDefinition_t const TOKENS_TRC20[NUM_TOKENS_TRC20];

0 comments on commit d001a0c

Please sign in to comment.