1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-15 12:08:59 +00:00

protob: remove chain_id from get address and get public key

This commit is contained in:
Tomas Susanka 2019-01-11 10:55:29 +01:00
parent 60f43b2db3
commit 7c151de354

View File

@ -17,7 +17,6 @@ import "messages-common.proto";
message EthereumGetPublicKey {
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
optional bool show_display = 2; // optionally show on display before sending the result
optional uint32 chain_id = 3; // eth chain
}
/**
@ -38,7 +37,6 @@ message EthereumPublicKey {
message EthereumGetAddress {
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
optional bool show_display = 2; // optionally show on display before sending the result
optional uint32 chain_id = 3; // Chain Id for EIP 155
}
/**