aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2014-07-23 17:47:48 +0200
committerRiccardo Spagni <ric@spagni.net>2014-07-23 17:47:48 +0200
commiteb8de582309bca21e44c97a3f96069a0351243ea (patch)
tree3e68c03099d79c4d7270daa97b4be8023a3df964 /src/wallet/wallet_rpc_server.cpp
parent55b92e39997a32ac889c72dc393fb74fa6759136 (diff)
parenta59b6205cd24b5c4ebc2641006ec99d981143752 (diff)
downloadmonzero-core-eb8de582309bca21e44c97a3f96069a0351243ea.tar.gz
monzero-core-eb8de582309bca21e44c97a3f96069a0351243ea.tar.xz
monzero-core-eb8de582309bca21e44c97a3f96069a0351243ea.zip
Merge pull request #69 from ekimmo/monero/master
wallet rpc: actually populate the extra while assembling a transaction
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r--src/wallet/wallet_rpc_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp
index 228e43678..403e2bb86 100644
--- a/src/wallet/wallet_rpc_server.cpp
+++ b/src/wallet/wallet_rpc_server.cpp
@@ -88,7 +88,7 @@ namespace tools
}
//------------------------------------------------------------------------------------------------------------------------------
- bool wallet_rpc_server::validate_transfer(const std::list<wallet_rpc::transfer_destination> destinations, const std::string payment_id, std::vector<cryptonote::tx_destination_entry>& dsts, std::vector<uint8_t> extra, epee::json_rpc::error& er)
+ bool wallet_rpc_server::validate_transfer(const std::list<wallet_rpc::transfer_destination> destinations, const std::string payment_id, std::vector<cryptonote::tx_destination_entry>& dsts, std::vector<uint8_t>& extra, epee::json_rpc::error& er)
{
for (auto it = destinations.begin(); it != destinations.end(); it++)
{