Skip to content

Commit

Permalink
Merge pull request #115 from KeystoneHQ/fix-okx
Browse files Browse the repository at this point in the history
Fix okx
  • Loading branch information
ww3512687 authored Sep 28, 2023
2 parents a806f16 + 5531663 commit bfd6ac0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions rust/apps/wallets/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions rust/apps/wallets/src/okx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ fn generate_eth_ledger_live_key(
);
Ok(CryptoHDKey::new_extended_key(
Some(false),
xpub.public_key.serialize().to_vec(),
_target_key.public_key.serialize().to_vec(),
None,
None,
Some(key_path),
None,
Some(xpub.parent_fingerprint.to_bytes()),
Some(_target_key.parent_fingerprint.to_bytes()),
Some("Keystone".to_string()),
note,
))
Expand Down
2 changes: 1 addition & 1 deletion src/config/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define SOFTWARE_VERSION_MAJOR 1
#define SOFTWARE_VERSION_MINOR 0
#define SOFTWARE_VERSION_BUILD 0
#define SOFTWARE_VERSION_BUILD 2
#define SOFTWARE_VERSION (SOFTWARE_VERSION_MAJOR * 10000 + SOFTWARE_VERSION_MINOR * 100 + SOFTWARE_VERSION_BUILD)

#if SOFTWARE_VERSION_MAJOR > 99 || SOFTWARE_VERSION_MINOR > 99 || SOFTWARE_VERSION_BUILD > 99
Expand Down

0 comments on commit bfd6ac0

Please sign in to comment.