From 71a02eb83dfa4a5f0543743bc8fcfbd74fc0b7d0 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 30 Oct 2014 00:23:32 +0100 Subject: [PATCH] add coin_name to EncryptMessage --- protob/messages.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/messages.proto b/protob/messages.proto index f7b3f3765..decc934d7 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -406,6 +406,7 @@ message EncryptMessage { optional bytes message = 2; // message to encrypt 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 + optional string coin_name = 5 [default='Bitcoin']; // coin to use for signing } /**