1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-16 19:38:09 +00:00

Merge pull request #266 from trezor/tsusanka/eth-address

Send address in EthereumAddress as string instead of bytes
This commit is contained in:
Tomas Susanka 2019-01-25 15:21:34 +01:00 committed by GitHub
commit 6a39049cc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
}
/**