1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-15 19:08:07 +00:00

protob: add version_group_id to SignTx and TxAck

This commit is contained in:
Pavol Rusnak 2018-10-15 17:29:43 +02:00
parent 2742890439
commit 95ffa894c8
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -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
*/