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 | 0d206dccda70e83529585e4c509ee8691463fd3c (diff) | |
| parent | 6e270fbd29d3b13493ce9ba182b97d9ce8191403 (diff) | |
| download | monzero-core-e67789d075b6801bc76f57fca859bac99da6a34b.tar.gz monzero-core-e67789d075b6801bc76f57fca859bac99da6a34b.tar.xz monzero-core-e67789d075b6801bc76f57fca859bac99da6a34b.zip | |
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); } |
