Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix middleware docker image build #159

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.8] - 01/11/2023

### Fixes

- Fixed failing middleware docker image build

## [2.3.7] - 03/08/2023

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion docker/mware/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get install -y \
libsecp256k1-dev=0.1~20210108-1 \
python3-pkgconfig=1.5.1-3 \
libusb-1.0-0-dev=2:1.0.24-3 \
libudev-dev=247.3-7+deb11u2 \
libudev-dev=247.3-7+deb11u4 \
libffi-dev=3.3-6 #\
libjpeg-dev=1:2.0.6-4

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 0x07
#define VERSION_PATCH 0x08

// 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 0x07
#define VERSION_PATCH 0x08

// 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, 7)
APP_VERSION = HSM2FirmwareVersion(2, 3, 7)
UI_VERSION = HSM2FirmwareVersion(2, 3, 8)
APP_VERSION = HSM2FirmwareVersion(2, 3, 8)

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