Skip to content

Commit

Permalink
chore: delete printf in src/helper/util.c
Browse files Browse the repository at this point in the history
  • Loading branch information
keiff3r authored Dec 2, 2024
1 parent 46050c3 commit 7a44ff7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/helper/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,6 @@ int derivation_path_type(uint32_t *bip32_path, size_t bip32_path_len) {
if (bip32_path_len == 5) {
path_type += 10;
uint32_t subtree = bip32_path[LEGACY_PATH_SUBTREE_INDEX];
// print path length
for (size_t i = 0; i < bip32_path_len; i++) {
PRINTF("%x ", bip32_path[i]);
}
PRINTF("\n");
if (subtree != 1 && subtree != LEGACY_GOVERNANCE_SUBTREE) {
path_type = -1;
}
Expand Down Expand Up @@ -193,4 +188,4 @@ int sign(uint8_t *m_hash, size_t m_hash_len, uint8_t *signature, size_t signatur

PRINTF("Signature: %.*H\n", sig_len, signature);
return 0;
}
}

0 comments on commit 7a44ff7

Please sign in to comment.