Skip to content

Commit

Permalink
Merge commit 'refs/pull/1139/head' of https://github.com/digitalbitbo…
Browse files Browse the repository at this point in the history
  • Loading branch information
benma committed Oct 18, 2023
2 parents 5cd1c6e + ce41726 commit 6e83767
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
### [Unreleased]
- Disable screensaver when displaying a receive address, confirming a transaction, and other interactive actions
- Add Sepolia testnet for Ethereum
- Added a disclaimer screen before the recovery words are displayed

### 9.15.0
- Security bugfix: check index of an input's previous output to prevent the fee attack originally
Expand Down
8 changes: 8 additions & 0 deletions src/rust/bitbox02-rust/src/hww/api/show_mnemonic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ pub async fn process() -> Result<Response, Error> {

let mnemonic_sentence = keystore::get_bip39_mnemonic()?;

confirm::confirm(&confirm::Params {
title: "Warning",
body: "DO NOT share your\nrecovery words with\nanyone!",
accept_is_nextarrow: true,
..Default::default()
})
.await?;

confirm::confirm(&confirm::Params {
title: "Recovery\nwords",
body: "Please write down\nthe following words",
Expand Down

0 comments on commit 6e83767

Please sign in to comment.