Skip to content

Commit

Permalink
Wallet changes for create and edit account TX
Browse files Browse the repository at this point in the history
  • Loading branch information
VanGrx committed Oct 31, 2019
1 parent 7ad8877 commit 771ef45
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1117,6 +1117,11 @@ void wallet::process_new_transaction(const crypto::hash &txid, const cryptonote:
{
hwdev_lock.lock();
hwdev.set_mode(hw::device::NONE);
if ((tx_scan_info[i].output_type == tx_out_type::out_safex_account)
|| (tx_scan_info[i].output_type == tx_out_type::out_safex_account_update)) {
outs.push_back(i);
continue;
}
hwdev.conceal_derivation(tx_scan_info[i].received->derivation, tx_pub_key, additional_tx_pub_keys, derivation, additional_derivations);
scan_output(tx, tx_pub_key, i, tx_scan_info[i], num_vouts_received, tx_money_got_in_outs, tx_tokens_got_in_outs, outs);
hwdev_lock.unlock();
Expand Down

0 comments on commit 771ef45

Please sign in to comment.