From 8f7658da89ca807aa5092fa251a1bbe2db46ba06 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 2 Apr 2014 20:27:42 +0200 Subject: [PATCH] outputs->bin_outputs, our_outputs->outputs in TransactionType --- protob/types.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protob/types.proto b/protob/types.proto index 450633dc7a..190bcb4353 100644 --- a/protob/types.proto +++ b/protob/types.proto @@ -154,7 +154,7 @@ message TxOutputBinType { message TransactionType { optional uint32 version = 1; repeated TxInputType inputs = 2; - repeated TxOutputBinType outputs = 3; - repeated TxOutputType our_outputs = 4; - optional uint32 lock_time = 5; + repeated TxOutputBinType bin_outputs = 3; + repeated TxOutputType outputs = 5; + optional uint32 lock_time = 4; }