Remove debugging statements
This commit is contained in:
@@ -24,7 +24,6 @@ const network_info_t NETWORK_MAPPING[] = {
|
|||||||
|
|
||||||
uint64_t get_chain_id(void) {
|
uint64_t get_chain_id(void) {
|
||||||
uint64_t chain_id = 0;
|
uint64_t chain_id = 0;
|
||||||
char tmp[16] = {0};
|
|
||||||
|
|
||||||
switch (txContext.txType) {
|
switch (txContext.txType) {
|
||||||
case LEGACY:
|
case LEGACY:
|
||||||
@@ -39,24 +38,16 @@ uint64_t get_chain_id(void) {
|
|||||||
PRINTF("Txtype `%d` not supported while generating chainID\n", txContext.txType);
|
PRINTF("Txtype `%d` not supported while generating chainID\n", txContext.txType);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
u64_to_string(chain_id, tmp, sizeof(tmp));
|
|
||||||
PRINTF("\n\nTMP: %s\n", tmp);
|
|
||||||
return chain_id;
|
return chain_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
network_info_t *get_network(void) {
|
network_info_t *get_network(void) {
|
||||||
uint64_t chain_id = get_chain_id();
|
uint64_t chain_id = get_chain_id();
|
||||||
char tmp1[16];
|
|
||||||
char tmp2[16];
|
|
||||||
for (uint8_t i = 0; i < sizeof(NETWORK_MAPPING) / sizeof(*NETWORK_MAPPING); i++) {
|
for (uint8_t i = 0; i < sizeof(NETWORK_MAPPING) / sizeof(*NETWORK_MAPPING); i++) {
|
||||||
u64_to_string(NETWORK_MAPPING[i].chain_id, tmp1, sizeof(tmp1));
|
|
||||||
u64_to_string(chain_id, tmp2, sizeof(tmp2));
|
|
||||||
PRINTF("Comparing %s but wanted %s\n", tmp1, tmp2);
|
|
||||||
if (NETWORK_MAPPING[i].chain_id == chain_id) {
|
if (NETWORK_MAPPING[i].chain_id == chain_id) {
|
||||||
return (network_info_t *) PIC(&NETWORK_MAPPING[i]);
|
return (network_info_t *) PIC(&NETWORK_MAPPING[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PRINTF("RETURNING NULL\n");
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -267,7 +267,6 @@ void prepareNetworkDisplay() {
|
|||||||
} else {
|
} else {
|
||||||
// Network name found, simply copy it.
|
// Network name found, simply copy it.
|
||||||
strlcpy(strings.common.network_name, name, sizeof(strings.common.network_name));
|
strlcpy(strings.common.network_name, name, sizeof(strings.common.network_name));
|
||||||
PRINTF("COPIED\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -457,9 +456,6 @@ void finalizeParsing(bool direct) {
|
|||||||
|
|
||||||
// Prepare chainID field
|
// Prepare chainID field
|
||||||
prepareNetworkDisplay();
|
prepareNetworkDisplay();
|
||||||
PRINTF("Network bytes: %.*H\n",
|
|
||||||
sizeof(strings.common.network_name),
|
|
||||||
strings.common.network_name);
|
|
||||||
PRINTF("Network: %s\n", strings.common.network_name);
|
PRINTF("Network: %s\n", strings.common.network_name);
|
||||||
|
|
||||||
bool no_consent;
|
bool no_consent;
|
||||||
|
|||||||
@@ -39,8 +39,11 @@ unsigned int io_seproxyhal_touch_tx_ok(__attribute__((unused)) const bagl_elemen
|
|||||||
G_io_apdu_buffer[0] = 27;
|
G_io_apdu_buffer[0] = 27;
|
||||||
} else {
|
} else {
|
||||||
// New API
|
// New API
|
||||||
// Note that this is wrong for a large v, but the client can always recover
|
// Note that this is wrong for a large v, but ledgerjs will recover.
|
||||||
uint64_t v = u64_from_BE(tmpContent.txContent.v, tmpContent.txContent.vLength);
|
|
||||||
|
// Casting to u32 not to introduce breaking changes. In the future, this should be
|
||||||
|
// updated.
|
||||||
|
uint32_t v = U4BE(tmpContent.txContent.v, 0);
|
||||||
G_io_apdu_buffer[0] = (v * 2) + 35;
|
G_io_apdu_buffer[0] = (v * 2) + 35;
|
||||||
}
|
}
|
||||||
if (info & CX_ECCINFO_PARITY_ODD) {
|
if (info & CX_ECCINFO_PARITY_ODD) {
|
||||||
|
|||||||
@@ -224,7 +224,6 @@ void ux_approve_tx(bool fromPlugin) {
|
|||||||
|
|
||||||
uint64_t chain_id = get_chain_id();
|
uint64_t chain_id = get_chain_id();
|
||||||
if (chainConfig->chainId == ETHEREUM_MAINNET_CHAINID && chain_id != chainConfig->chainId) {
|
if (chainConfig->chainId == ETHEREUM_MAINNET_CHAINID && chain_id != chainConfig->chainId) {
|
||||||
PRINTF("ADDED GET CHAIN ID\n");
|
|
||||||
ux_approval_tx_flow[step++] = &ux_approval_network_step;
|
ux_approval_tx_flow[step++] = &ux_approval_network_step;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user