diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-07-14 22:14:41 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-07-14 22:14:41 -0400 |
commit | 02cbccc52937035396614c04b4ebebe6cd1b0c8c (patch) | |
tree | ef4ad1f3b9f5d374c68103bb30a9fc0cb12bca7f /src/wallet/wallet2.h | |
parent | Merge pull request #7986 (diff) | |
parent | derive multisig tx secret keys from an entropy source plus the tx inputs' key... (diff) | |
download | monero-02cbccc52937035396614c04b4ebebe6cd1b0c8c.tar.xz |
Merge pull request #8432
edcc094 derive multisig tx secret keys from an entropy source plus the tx inputs' key images (koe)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 45cb5fae0..16e898ad8 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -635,10 +635,12 @@ private: std::vector<crypto::secret_key> additional_tx_keys; std::vector<cryptonote::tx_destination_entry> dests; std::vector<multisig_sig> multisig_sigs; + crypto::secret_key multisig_tx_key_entropy; tx_construction_data construction_data; BEGIN_SERIALIZE_OBJECT() + VERSION_FIELD(1) FIELD(tx) FIELD(dust) FIELD(fee) @@ -651,6 +653,12 @@ private: FIELD(dests) FIELD(construction_data) FIELD(multisig_sigs) + if (version < 1) + { + multisig_tx_key_entropy = crypto::null_skey; + return true; + } + FIELD(multisig_tx_key_entropy) END_SERIALIZE() }; |