1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-08 22:40:59 +00:00

Include initial data chunk (<= 1024 bytes) in EthereumSignTx

This commit is contained in:
Alex Beregszaszi 2016-05-23 19:26:15 +01:00
parent 4d8cf6f8dd
commit 2b72edf8f3

View File

@ -604,7 +604,8 @@ message EthereumSignTx {
optional bytes gas_limit = 4; // 256 bit unsigned big endian
optional bytes to = 5; // 160 bit address hash
optional bytes value = 6; // 256 bit unsigned big endian (in wei)
optional uint32 data_length = 7; // Length of transaction payload
optional bytes data_initial_chunk = 7; // The initial data chunk (<= 1024 bytes)
optional uint32 data_length = 8; // Length of transaction payload
}
/**