Skip to content

Commit

Permalink
fixed c&p error
Browse files Browse the repository at this point in the history
  • Loading branch information
shufps committed Feb 9, 2024
1 parent 3402b35 commit 2496772
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/iota/blindsigning.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ uint8_t parse_and_validate_blindsigning(API_CTX *api,
{
uint32_t idx = 0;

MUST((api.protocol == PROTOCOL_STARDUST &&
MUST((api->protocol == PROTOCOL_STARDUST &&
signing_input_len == BLAKE2B_SIZE_BYTES) ||
(api.protocol == PROTOCOL_NOVA &&
(api->protocol == PROTOCOL_NOVA &&
(signing_input_len == SIGNING_INPUT_NOVA_32BYTE ||
signing_input_len == SIGNING_INPUT_NOVA_64BYTE)));

Expand Down

0 comments on commit 2496772

Please sign in to comment.