From 95ffa894c8808dd9a66cd6c88f434a241a43de91 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 15 Oct 2018 17:29:43 +0200 Subject: [PATCH] protob: add version_group_id to SignTx and TxAck --- protob/messages-bitcoin.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protob/messages-bitcoin.proto b/protob/messages-bitcoin.proto index d6d9b19a19..632d0be8b1 100644 --- a/protob/messages-bitcoin.proto +++ b/protob/messages-bitcoin.proto @@ -129,6 +129,7 @@ message SignTx { optional uint32 lock_time = 5 [default=0]; // transaction lock_time optional uint32 expiry = 6; // only for Decred and Zcash optional bool overwintered = 7; // only for Zcash + optional uint32 version_group_id = 4; // only for Zcash, nVersionGroupId when overwintered is set } /** @@ -192,6 +193,7 @@ message TxAck { optional uint32 extra_data_len = 9; // only for Zcash optional uint32 expiry = 10; // only for Decred and Zcash optional bool overwintered = 11; // only for Zcash + optional uint32 version_group_id = 12; // only for Zcash, nVersionGroupId when overwintered is set /** * Structure representing transaction input */