renaming EWC to EWT (#397)

* correcting ticker

* modifying conf file

* updating main.c

* updating chainConfig.h

* Removed last bits of EWC

---------

Co-authored-by: Alexandre Paillier <alexandre.paillier@ledger.fr>
This commit is contained in:
tjulien-ledger
2023-02-03 15:54:07 +01:00
committed by GitHub
parent f5b32109be
commit 160fed7348
6 changed files with 11 additions and 11 deletions

View File

@@ -228,8 +228,8 @@ extraInfo_t *getKnownToken(uint8_t *contractAddress) {
case CHAIN_KIND_VOLTA:
numTokens = NUM_TOKENS_VOLTA;
break;
case CHAIN_KIND_EWC:
numTokens = NUM_TOKENS_EWC;
case CHAIN_KIND_ENERGYWEBCHAIN:
numTokens = NUM_TOKENS_ENERGYWEBCHAIN;
break;
case CHAIN_KIND_WEBCHAIN:
numTokens = NUM_TOKENS_WEBCHAIN;
@@ -384,8 +384,8 @@ extraInfo_t *getKnownToken(uint8_t *contractAddress) {
case CHAIN_KIND_VOLTA:
currentToken = (tokenDefinition_t *) PIC(&TOKENS_VOLTA[i]);
break;
case CHAIN_KIND_EWC:
currentToken = (tokenDefinition_t *) PIC(&TOKENS_EWC[i]);
case CHAIN_KIND_ENERGYWEBCHAIN:
currentToken = (tokenDefinition_t *) PIC(&TOKENS_ENERGYWEBCHAIN[i]);
break;
case CHAIN_KIND_WEBCHAIN:
currentToken = (tokenDefinition_t *) PIC(&TOKENS_WEBCHAIN[i]);