Skip to content

Commit b2d0f21

Browse files
committed
Merge branch 'paymentreq'
2 parents 9562073 + 02f397c commit b2d0f21

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
77
## Firmware
88

99
### [Unreleased]
10+
- Bitcoin: add support for payment requests
1011
- Ethereum: allow signing EIP-712 messages containing multi-line strings
1112

1213
### 9.18.0

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ endif()
9696
#
9797
# Versions MUST contain three parts and start with lowercase 'v'.
9898
# Example 'v1.0.0'. They MUST not contain a pre-release label such as '-beta'.
99-
set(FIRMWARE_VERSION "v9.18.0")
100-
set(FIRMWARE_BTC_ONLY_VERSION "v9.18.0")
99+
set(FIRMWARE_VERSION "v9.19.0")
100+
set(FIRMWARE_BTC_ONLY_VERSION "v9.19.0")
101101
set(BOOTLOADER_VERSION "v1.0.6")
102102

103103
find_package(PythonInterp 3.6 REQUIRED)

src/rust/bitbox02-rust/src/hww/api/bitcoin/signtx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ async fn _process(request: &pb::BtcSignInitRequest) -> Result<Response, Error> {
792792
return Err(Error::InvalidInput);
793793
}
794794
let payment_request: pb::BtcPaymentRequestRequest =
795-
get_payment_request(output_index, &mut next_response).await?;
795+
get_payment_request(output_payment_request_index, &mut next_response).await?;
796796
payment_request::user_verify(coin_params, &payment_request, format_unit).await?;
797797
if payment_request::validate(
798798
coin_params,

0 commit comments

Comments
 (0)