Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chcmedeiros committed Jul 26, 2024
1 parent b4285ed commit 26b09da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ TESTS_JS_DIR = $(CURDIR)/js
ifeq ($(BOLOS_SDK),)

ZXLIB_COMPILE_STAX ?= 1
PRODUCTION_BUILD ?= 0
PRODUCTION_BUILD ?= 1
include $(CURDIR)/deps/ledger-zxlib/dockerized_build.mk

else
Expand Down
2 changes: 1 addition & 1 deletion app/src/parser_print_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ parser_error_t page_principal_with_subaccount(const uint8_t *sender, uint16_t se
MEMCPY(text_ptr, crc_text, crcLen);
*(text_ptr + crcLen) = SEPARATOR;
text_ptr += crcLen + 1;
#if !defined(TARGET_STAX) || defined(TARGET_FLEX) // needed if crc32 length is < 7
#if !defined(TARGET_STAX) && !defined(TARGET_FLEX) // needed if crc32 length is < 7
for (uint8_t i = crcLen; i < 7; i++) {
*text_ptr = ' ';
text_ptr++;
Expand Down

0 comments on commit 26b09da

Please sign in to comment.