Skip to content

Commit bf4177a

Browse files
Merge remote-tracking branch 'origin/master' into develop
2 parents 22280a0 + b96a191 commit bf4177a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [1.22.0](../../compare/1.21.x...1.22.0) - 2026-xx-xx
99

10+
## [1.21.1](../../compare/1.20.1...1.21.1) - 2026-02-19
11+
12+
### Fixed
13+
14+
- Blind-signing of ERC-20 transfer/approve not working
15+
1016
## [1.21.0](../../compare/1.20.1...1.21.0) - 2026-02-16
1117

1218
### Added

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)