Skip to content

Commit

Permalink
Updated UI, signer, and middleware to 2.3.5 (#62)
Browse files Browse the repository at this point in the history
- Updated version definitions
- Updated changelog
  • Loading branch information
italo-sampaio authored Jun 27, 2022
1 parent bdc8918 commit 51aad25
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [2.3.5] - 27/06/2022

### Fixes

- Fixed blockchain state initialized flag not being properly persisted

## [2.3.4-r2] - 13/06/2022

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/signer/src/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// Version and patchlevel
#define VERSION_MAJOR 0x02
#define VERSION_MINOR 0x03
#define VERSION_PATCH 0x04
#define VERSION_PATCH 0x05

// Instructions
#define INS_SIGN 0x02
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/ui/src/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// Version and patchlevel
#define VERSION_MAJOR 0x02
#define VERSION_MINOR 0x03
#define VERSION_PATCH 0x04
#define VERSION_PATCH 0x05

// Instructions
#define RSK_PIN_CMD 0x41
Expand Down
4 changes: 2 additions & 2 deletions middleware/ledger/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@

class HSM2ProtocolLedger(HSM2Protocol):
# Current manager supported versions for HSM UI and HSM SIGNER (<=)
UI_VERSION = HSM2FirmwareVersion(2, 3, 4)
APP_VERSION = HSM2FirmwareVersion(2, 3, 4)
UI_VERSION = HSM2FirmwareVersion(2, 3, 5)
APP_VERSION = HSM2FirmwareVersion(2, 3, 5)

# Amount of time to wait to make sure the app is opened
OPEN_APP_WAIT = 1 # second
Expand Down

0 comments on commit 51aad25

Please sign in to comment.