From ee211f4bc8d9b85182039e1728c6c1313fa0062a Mon Sep 17 00:00:00 2001
From: Saleem Rashid <trezor@saleemrashid.com>
Date: Wed, 20 Dec 2017 20:43:29 +0000
Subject: [PATCH] protob: Add decred_script_version to TxInputType

---
 protob/types.proto | 1 +
 1 file changed, 1 insertion(+)

diff --git a/protob/types.proto b/protob/types.proto
index 33c01ea28b..fa382e3e52 100644
--- a/protob/types.proto
+++ b/protob/types.proto
@@ -198,6 +198,7 @@ message TxInputType {
 	optional MultisigRedeemScriptType multisig = 7;				// Filled if input is going to spend multisig tx
 	optional uint64 amount = 8;						// amount of previous transaction output (for segwit only)
 	optional uint32 decred_tree = 9;
+	optional uint32 decred_script_version = 10;
 }
 
 /**