wallet: sign_tx: get tx pubkey from extra

This commit is contained in:
tobtoht 2023-11-02 15:16:52 +01:00
parent 67d190ce7c
commit 1062b172b6
No known key found for this signature in database
GPG Key ID: E45B10DD027D2472
1 changed files with 1 additions and 3 deletions

View File

@ -7287,9 +7287,7 @@ bool wallet2::sign_tx(unsigned_tx_set &exported_txs, std::vector<wallet2::pendin
crypto::key_derivation derivation;
std::vector<crypto::key_derivation> additional_derivations;
// compute public keys from out secret keys
crypto::public_key tx_pub_key;
crypto::secret_key_to_public_key(txs[n].tx_key, tx_pub_key);
crypto::public_key tx_pub_key = get_tx_pub_key_from_extra(tx);
std::vector<crypto::public_key> additional_tx_pub_keys;
for (const crypto::secret_key &skey: txs[n].additional_tx_keys)
{