Skip to content

Commit b96a191

Browse files
Merge pull request #953 from LedgerHQ/fix/apa/erc20_blind_signing
App hotfix 1.21.1
2 parents 45cbb50 + 7c55bc5 commit b96a191

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.21.1](../../compare/1.20.1...1.21.1) - 2026-02-19
9+
10+
### Fixed
11+
12+
- Blind-signing of ERC-20 transfer/approve not working
13+
814
## [1.21.0](../../compare/1.20.1...1.21.0) - 2026-02-16
915

1016
### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ include ./makefile_conf/chain/$(CHAIN).mk
3737

3838
APPVERSION_M = 1
3939
APPVERSION_N = 21
40-
APPVERSION_P = 0
40+
APPVERSION_P = 1
4141
APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)
4242

4343
# Application source files

src/nbgl/ui_approve_tx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ static bool ux_init(bool fromPlugin, uint8_t title_len, uint8_t finish_len) {
331331
goto error;
332332
}
333333

334-
if (fromPlugin == true) {
334+
if (fromPlugin && (dataContext.tokenContext.pluginUiMaxItems > 0)) {
335335
buf_size = dataContext.tokenContext.pluginUiMaxItems * sizeof(plugin_buffers_t);
336336
// Allocate the plugin buffers
337337
if ((plugin_buffers = app_mem_alloc(buf_size)) == NULL) {

0 commit comments

Comments
 (0)