From b678022437150fbd1ff7a9983ef077655a4b3065 Mon Sep 17 00:00:00 2001 From: slush0 Date: Thu, 17 Apr 2014 05:51:28 +0200 Subject: [PATCH] Added inputs_count/outputs_count to TransactionType --- protob/types.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protob/types.proto b/protob/types.proto index b64a86d27..3727663e6 100644 --- a/protob/types.proto +++ b/protob/types.proto @@ -158,6 +158,8 @@ message TransactionType { repeated TxOutputBinType bin_outputs = 3; repeated TxOutputType outputs = 5; optional uint32 lock_time = 4; + optional uint32 inputs_count = 6; + optional uint32 outputs_count = 7; } message TxRequestDetailsType {