1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 14:28:07 +00:00

protob: set PublicKey's node to optional to be consistent with other coins

This commit is contained in:
Tomas Susanka 2019-03-04 12:53:39 +01:00
parent f5e5516ed2
commit 84f5a0e393

View File

@ -56,7 +56,7 @@ message GetPublicKey {
* @end
*/
message PublicKey {
required hw.trezor.messages.common.HDNodeType node = 1; // BIP32 public node
optional hw.trezor.messages.common.HDNodeType node = 1; // BIP32 public node
optional string xpub = 2; // serialized form of public node
}