diff options
author | Erik Kimmo <erik.kimmo@gmail.com> | 2014-07-23 19:27:23 +0400 |
---|---|---|
committer | Erik Kimmo <erik.kimmo@gmail.com> | 2014-07-23 19:27:23 +0400 |
commit | a59b6205cd24b5c4ebc2641006ec99d981143752 (patch) | |
tree | 3e68c03099d79c4d7270daa97b4be8023a3df964 /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #68 from tewinget/daemon_rpc (diff) | |
download | monero-a59b6205cd24b5c4ebc2641006ec99d981143752.tar.xz |
wallet rpc: actually populate the extra while assembling a transaction
Diffstat (limited to '')
-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++) { |