diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-09-08 19:57:49 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-09-08 19:57:49 -0500 |
| commit | 1fd43d3f9f8f5a96dadded20080521152b820a1f (patch) | |
| tree | 2434c77ad5059633454dedb42144856ea9497cee | |
| parent | 871661f3dcea7d49b9920c31fa6316e8fdfa3ad3 (diff) | |
| parent | 894cc81e835848a42b24c2a3efaf7261f170cf2c (diff) | |
| download | monzero-core-1fd43d3f9f8f5a96dadded20080521152b820a1f.tar.gz monzero-core-1fd43d3f9f8f5a96dadded20080521152b820a1f.tar.xz monzero-core-1fd43d3f9f8f5a96dadded20080521152b820a1f.zip | |
Merge pull request #5847
894cc81 wallet2: fix cold signing losing tx keys (moneromooo-monero)
| -rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index b99fc12e2..cdb167ecb 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -6346,7 +6346,7 @@ bool wallet2::sign_tx(unsigned_tx_set &exported_txs, std::vector<wallet2::pendin // normally, the tx keys are saved in commit_tx, when the tx is actually sent to the daemon. // we can't do that here since the tx will be sent from the compromised wallet, which we don't want // to see that info, so we save it here - if (store_tx_info() && ptx.tx_key != crypto::null_skey) + if (store_tx_info() && tx_key != crypto::null_skey) { const crypto::hash txid = get_transaction_hash(ptx.tx); m_tx_keys.insert(std::make_pair(txid, tx_key)); |
