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

protobuf/eth: MessageSignature and VerifyMessage have also address as a string

This commit is contained in:
Tomas Susanka 2019-01-25 15:46:26 +01:00
parent 6a39049cc1
commit 534d15f208

View File

@ -106,8 +106,8 @@ message EthereumSignMessage {
* @end
*/
message EthereumMessageSignature {
optional bytes address = 1; // address used to sign the message
optional bytes signature = 2; // signature of the message
optional string address = 3; // address used to sign the message
}
/**
@ -117,7 +117,7 @@ message EthereumMessageSignature {
* @next Failure
*/
message EthereumVerifyMessage {
optional bytes address = 1; // address to verify
optional bytes signature = 2; // signature to verify
optional bytes message = 3; // message to verify
optional string address = 4; // address to verify
}