aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server_commans_defs.h
diff options
context:
space:
mode:
authorNeozaru <neozaru@mailoo.org>2014-06-02 00:22:42 +0200
committerNeozaru <neozaru@mailoo.org>2014-06-02 00:22:42 +0200
commit117393d562fc9782efed0e1b25f6470d9f8102b2 (patch)
tree64bda474a67cbc24cea03fdfca9aaf7a2ab8fadb /src/wallet/wallet_rpc_server_commans_defs.h
parentMerge bitmonero@monero-project (diff)
downloadmonero-117393d562fc9782efed0e1b25f6470d9f8102b2.tar.xz
Added 'payment_id' optional argument to 'transfer' wallet RPC method
Diffstat (limited to 'src/wallet/wallet_rpc_server_commans_defs.h')
-rw-r--r--src/wallet/wallet_rpc_server_commans_defs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commans_defs.h b/src/wallet/wallet_rpc_server_commans_defs.h
index cc005b29c..df05b4e0a 100644
--- a/src/wallet/wallet_rpc_server_commans_defs.h
+++ b/src/wallet/wallet_rpc_server_commans_defs.h
@@ -70,12 +70,14 @@ namespace wallet_rpc
uint64_t fee;
uint64_t mixin;
uint64_t unlock_time;
+ std::string payment_id;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(destinations)
KV_SERIALIZE(fee)
KV_SERIALIZE(mixin)
KV_SERIALIZE(unlock_time)
+ KV_SERIALIZE(payment_id)
END_KV_SERIALIZE_MAP()
};