1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-15 09:50:57 +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
*/
message EthereumAddress {
required bytes address = 1; // Coin address as an Ethereum 160 bit hash
required string address = 2; // Ethereum address as string
}
/**