Skip to content

Commit bcf5972

Browse files
committed
Fix CI
1 parent cd5338b commit bcf5972

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "MIT"
77

88
[dependencies]
9-
ledger_device_sdk = "1.22.4"
9+
ledger_device_sdk = "1.22.5"
1010
ledger_secure_sdk_sys = { version = "1.8.1", features = ["heap"]}
1111
utils= { path = "../utils" }
1212
numtoa = "=0.2.4"

app/src/ui/tx_reviewer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ impl TxReviewer {
295295
let mut output = [0u8; ADDRESS_MAX_SIZE];
296296
let str_bytes = groupless_to_base58_address(
297297
p2pk.key.get_type(),
298-
&p2pk.key.key_bytes(),
298+
p2pk.key.key_bytes(),
299299
&p2pk.checksum.0,
300300
&mut output,
301301
)?;

0 commit comments

Comments
 (0)