diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-07-23 17:47:48 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-07-23 17:47:48 +0200 |
commit | eb8de582309bca21e44c97a3f96069a0351243ea (patch) | |
tree | 3e68c03099d79c4d7270daa97b4be8023a3df964 /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #68 from tewinget/daemon_rpc (diff) | |
parent | wallet rpc: actually populate the extra while assembling a transaction (diff) | |
download | monero-eb8de582309bca21e44c97a3f96069a0351243ea.tar.xz |
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.cpp | 2 |
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++) { |