aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-09-17 07:48:22 +0200
committerRiccardo Spagni <ric@spagni.net>2016-09-17 07:48:22 +0200
commit0edcbf6716cdfd2ea5439a7788cca0041b40a2e2 (patch)
tree2fea07fc1dc1806207cfca3212f802fa82e2205f /src/wallet/api/wallet.cpp
parentMerge pull request #1077 (diff)
parentwallet: change priority/fee to ArticMine's recommendation (diff)
downloadmonero-0edcbf6716cdfd2ea5439a7788cca0041b40a2e2.tar.xz
Merge pull request #1079
9c7b0cb wallet: change priority/fee to ArticMine's recommendation (moneromooo-monero)
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index f8704fde3..25a20a575 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -493,9 +493,8 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, const
//std::vector<tools::wallet2::pending_tx> ptx_vector;
try {
- // priority called "fee_multiplied in terms of underlying wallet interface
transaction->m_pending_tx = m_wallet->create_transactions_2(dsts, fake_outs_count, 0 /* unlock_time */,
- static_cast<uint64_t>(priority),
+ static_cast<uint32_t>(priority),
extra, m_trustedDaemon);
} catch (const tools::error::daemon_busy&) {