Skip to content

Commit

Permalink
fixed linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed May 1, 2024
1 parent 95c214d commit 47d236c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ uint16_t crypto_init_public_key(const cx_ecfp_256_private_key_t *private_key,
// generate corresponding public key
cx_err_t result = cx_ecfp_generate_pair_no_throw(CX_CURVE_256K1,
public_key,
(cx_ecfp_256_private_key_t *)private_key,
(cx_ecfp_256_private_key_t *) private_key,
true);
if (result == CX_OK) {
memmove(raw_public_key, public_key->W, PUBLIC_KEY_LEN);
Expand Down

0 comments on commit 47d236c

Please sign in to comment.