aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server.cpp
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2014-06-15 20:36:44 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-30 07:16:50 -0400
commit2e048a467976f6f620a3e9f55d26744139456147 (patch)
tree4c92550d5d6bc8c7450b701dd15f1fa5dba44a94 /src/wallet/wallet_rpc_server.cpp
parentworking on dividing functions in prep for tx splitting (diff)
downloadmonero-2e048a467976f6f620a3e9f55d26744139456147.tar.xz
final changes to get transaction splitting building. needs testing.
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r--src/wallet/wallet_rpc_server.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp
index a0816946b..95c71fc68 100644
--- a/src/wallet/wallet_rpc_server.cpp
+++ b/src/wallet/wallet_rpc_server.cpp
@@ -132,7 +132,8 @@ namespace tools
try
{
cryptonote::transaction tx;
- m_wallet.transfer(dsts, req.mixin, req.unlock_time, req.fee, extra, tx);
+ wallet2::pending_tx ptx;
+ m_wallet.transfer(dsts, req.mixin, req.unlock_time, req.fee, extra, tx, ptx);
res.tx_hash = boost::lexical_cast<std::string>(cryptonote::get_transaction_hash(tx));
return true;
}