Skip to content

Commit

Permalink
Merge pull request #137 from Zondax/improve_evm_ui
Browse files Browse the repository at this point in the history
Improve evm UI
  • Loading branch information
neithanmo committed Jul 28, 2023
2 parents 91e7494 + c49cce3 commit 53873a2
Show file tree
Hide file tree
Showing 170 changed files with 324 additions and 303 deletions.
2 changes: 1 addition & 1 deletion app/Makefile.version
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ APPVERSION_M=0
# This is the minor version of this release
APPVERSION_N=23
# This is the patch version of this release
APPVERSION_P=6
APPVERSION_P=7
4 changes: 4 additions & 0 deletions app/src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ parser_error_t parser_parse(parser_context_t *ctx, const uint8_t *data,
return _readClientDeal(ctx, &parser_tx_obj.client_deal_tx);
}
case raw_bytes: {
// Processing raw-bytes is valid only in expert mode
if (!app_mode_expert())
return parser_unsupported_tx;

return _readRawBytes(ctx, &parser_tx_obj.raw_bytes_tx);
}
default:
Expand Down
Loading

0 comments on commit 53873a2

Please sign in to comment.