Skip to content

Commit 437c1f5

Browse files
authored
Merge pull request #26 from aeternity/fixes
Fix message signing and update app metadata
2 parents 930783b + 039e9bb commit 437c1f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ default = ["ledger_device_sdk/nano_nbgl"]
2525
debug = ["ledger_device_sdk/debug"]
2626

2727
[package.metadata.ledger]
28-
curve = ["secp256k1"]
28+
curve = ["ed25519"]
2929
flags = "0"
30-
path = ["44'/1'"]
31-
name = "Rust Boilerplate"
30+
path = ["44'/457'"]
31+
name = "aeternity"
3232

3333
[package.metadata.ledger.nanox]
3434
icon = "icons/ae_14x14.gif"

src/handlers/sign_msg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use ledger_device_sdk::io::Comm;
66
use crate::app_ui::sign_msg::ui_display_msg;
77
use crate::{utils, AppSW};
88

9-
const SIGN_MAGIC: &str = "Aeternity Signed Message:\n";
9+
const SIGN_MAGIC: &str = "aeternity Signed Message:\n";
1010
// Conversion using `as` is safe to do here because the string is constant and
1111
// the length is known at compile time.
1212
const SIGN_MAGIC_LEN: u8 = SIGN_MAGIC.len() as u8;

0 commit comments

Comments
 (0)