diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-22 22:58:06 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-09-22 23:00:34 +0000 |
commit | 6e270fbd29d3b13493ce9ba182b97d9ce8191403 (patch) | |
tree | 586befd9988e4f06905826a5a39d0f0aac361873 /src/wallet/api/wallet.cpp | |
parent | Merge pull request #4416 (diff) | |
download | monero-6e270fbd29d3b13493ce9ba182b97d9ce8191403.tar.xz |
wallet2_api: fix for latest code changes
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); } |