1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-23 07:58:09 +00:00

add coin_name to EncryptMessage

This commit is contained in:
Pavol Rusnak 2014-10-30 00:23:32 +01:00
parent e2dab40398
commit 71a02eb83d

View File

@ -406,6 +406,7 @@ message EncryptMessage {
optional bytes message = 2; // message to encrypt optional bytes message = 2; // message to encrypt
optional bool display_only = 3; // show just on display? (don't send back via wire) optional bool display_only = 3; // show just on display? (don't send back via wire)
repeated uint32 address_n = 4; // BIP-32 path to derive the signing key from master node repeated uint32 address_n = 4; // BIP-32 path to derive the signing key from master node
optional string coin_name = 5 [default='Bitcoin']; // coin to use for signing
} }
/** /**