diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-25 12:13:33 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-25 12:13:34 +0200 |
commit | e67789d075b6801bc76f57fca859bac99da6a34b (patch) | |
tree | 874c1df07b66f1937c73071b15158d089d35cab8 /src/wallet/api/wallet.cpp | |
parent | Merge pull request #4430 (diff) | |
parent | wallet2_api: fix for latest code changes (diff) | |
download | monero-e67789d075b6801bc76f57fca859bac99da6a34b.tar.xz |
Merge pull request #4422
6e270fbd wallet2_api: fix for latest code changes (moneromooo-monero)
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 8b25096a2..5827e4d1a 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -1385,7 +1385,7 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, const for (uint32_t index = 0; index < m_wallet->get_num_subaddresses(subaddr_account); ++index) subaddr_indices.insert(index); } - transaction->m_pending_tx = m_wallet->create_transactions_all(0, info.address, info.is_subaddress, fake_outs_count, 0 /* unlock_time */, + transaction->m_pending_tx = m_wallet->create_transactions_all(0, info.address, info.is_subaddress, 1, fake_outs_count, 0 /* unlock_time */, adjusted_priority, extra, subaddr_account, subaddr_indices); } |