From 0567a429cfc8c6fdf9e08c79270750c102fc4f70 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 16 Apr 2016 04:42:41 +0200 Subject: [PATCH] fix typo --- protob/messages.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protob/messages.proto b/protob/messages.proto index 5a42abdeba..3a6618a828 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -537,8 +537,8 @@ message SimpleSignTx { repeated TxOutputType outputs = 2; // transaction outputs repeated TransactionType transactions = 3; // transactions whose outputs are used to build current inputs optional string coin_name = 4 [default='Bitcoin']; // coin to use - optional uint32 version = 4 [default=1]; // transaction version - optional uint32 lock_time = 5 [default=0]; // transaction lock_time + optional uint32 version = 5 [default=1]; // transaction version + optional uint32 lock_time = 6 [default=0]; // transaction lock_time } /**