From e2dab40398da63becf0e815c9fece141d2043d2e Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 22 Oct 2014 17:39:05 +0200 Subject: [PATCH] add address_n field to EncryptMessage --- protob/messages.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protob/messages.proto b/protob/messages.proto index 7b9cb7501..f7b3f3765 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -405,6 +405,7 @@ message EncryptMessage { optional bytes pubkey = 1; // public key 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 } /** @@ -413,7 +414,7 @@ message EncryptMessage { * @next Failure */ message DecryptMessage { - repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node + repeated uint32 address_n = 1; // BIP-32 path to derive the decryption key from master node optional bytes message = 2; // message to decrypt }