From 886f2e076cff5986c6695e5d52bd4769fb7c6f1a Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Fri, 25 Jan 2019 15:17:52 +0100 Subject: [PATCH] protobuf/eth: EthereumAddress now sends string instead of bytes --- protob/messages-ethereum.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protob/messages-ethereum.proto b/protob/messages-ethereum.proto index 96a1d9323b..d591143502 100644 --- a/protob/messages-ethereum.proto +++ b/protob/messages-ethereum.proto @@ -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 } /**