mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 23:42:24 +00:00
Merge pull request #5847
894cc81
wallet2: fix cold signing losing tx keys (moneromooo-monero)
This commit is contained in:
commit
1fd43d3f9f
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
// 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
|
// 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
|
// 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);
|
const crypto::hash txid = get_transaction_hash(ptx.tx);
|
||||||
m_tx_keys.insert(std::make_pair(txid, tx_key));
|
m_tx_keys.insert(std::make_pair(txid, tx_key));
|
||||||
|
|
Loading…
Reference in a new issue