1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-30 11:28:21 +00:00

protob: add show_display to StellarGetPublicKey/StellarGetAddress

This commit is contained in:
Pavol Rusnak 2018-06-11 18:52:42 +02:00
parent 57a31feb2e
commit 0bf60dbda9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -1013,6 +1013,7 @@ message CosiSignature {
*/ */
message StellarGetPublicKey { message StellarGetPublicKey {
repeated uint32 address_n = 1; // BIP-32 path. For compatibility with other wallets, must be m/44'/148'/index' repeated uint32 address_n = 1; // BIP-32 path. For compatibility with other wallets, must be m/44'/148'/index'
optional bool show_display = 2; // optionally show on display before sending the result
} }
/** /**
@ -1029,6 +1030,7 @@ message StellarPublicKey {
*/ */
message StellarGetAddress { message StellarGetAddress {
repeated uint32 address_n = 1; // BIP-32 path. For compatibility with other wallets, must be m/44'/148'/index' repeated uint32 address_n = 1; // BIP-32 path. For compatibility with other wallets, must be m/44'/148'/index'
optional bool show_display = 2; // optionally show on display before sending the result
} }
/** /**