1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-04 13:52:35 +00:00

protobuf/eth: EthereumAddress now sends string instead of bytes

This commit is contained in:
Tomas Susanka 2019-01-25 15:17:52 +01:00
parent b947aa3d45
commit 886f2e076c

View File

@ -44,7 +44,7 @@ message EthereumGetAddress {
* @end * @end
*/ */
message EthereumAddress { message EthereumAddress {
required bytes address = 1; // Coin address as an Ethereum 160 bit hash required string address = 2; // Ethereum address as string
} }
/** /**