Skip to content

Commit 7403fa9

Browse files
authored
Merge pull request #1643 from input-output-hk/refactor/relax-cip8-signing-limit
refactor: relax CIP-8 signing threshold from 100 to 190
2 parents aca694c + be56211 commit 7403fa9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG UBUNTU_VERSION=20.04
1+
ARG UBUNTU_VERSION=22.04
22

33
FROM ubuntu:${UBUNTU_VERSION} AS ubuntu-nodejs
44
ARG NODEJS_MAJOR_VERSION=18

packages/hardware-ledger/src/LedgerKeyAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const LedgerConnection = (_LedgerConnection as any).default
6767
: _LedgerConnection;
6868
type LedgerConnection = _LedgerConnection;
6969

70-
const CIP08_SIGN_HASH_THRESHOLD = 100;
70+
const CIP08_SIGN_HASH_THRESHOLD = 190;
7171

7272
const isUsbDevice = (device: any): device is USBDevice =>
7373
typeof USBDevice !== 'undefined' && device instanceof USBDevice;

0 commit comments

Comments
 (0)