From 42e2f494b2ca16948549d764b1798996dd14ba4d Mon Sep 17 00:00:00 2001 From: Peter van Mourik Date: Wed, 7 Mar 2018 12:14:32 +0100 Subject: [PATCH] Changed tx_type to uint32 --- protob/messages.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protob/messages.proto b/protob/messages.proto index 34108bab5..b11620466 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -688,7 +688,7 @@ message EthereumSignTx { optional bytes data_initial_chunk = 7; // The initial data chunk (<= 1024 bytes) optional uint32 data_length = 8; // Length of transaction payload optional uint32 chain_id = 9; // Chain Id for EIP 155 - optional bytes tx_type = 10; // <=256 bit unsigned big endian (for Wanchain) + optional uint32 tx_type = 10; // <=256 bit unsigned big endian (for Wanchain) } /**