diff options
author | Neozaru <neozaru@mailoo.org> | 2014-06-02 00:22:42 +0200 |
---|---|---|
committer | Neozaru <neozaru@mailoo.org> | 2014-06-02 00:22:42 +0200 |
commit | 117393d562fc9782efed0e1b25f6470d9f8102b2 (patch) | |
tree | 64bda474a67cbc24cea03fdfca9aaf7a2ab8fadb /src/wallet/wallet2.h | |
parent | Merge bitmonero@monero-project (diff) | |
download | monero-117393d562fc9782efed0e1b25f6470d9f8102b2.tar.xz |
Added 'payment_id' optional argument to 'transfer' wallet RPC method
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index f90fc4fac..9ca586425 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -151,6 +151,8 @@ namespace tools static void wallet_exists(const std::string& file_path, bool& keys_file_exists, bool& wallet_file_exists); + static bool parse_payment_id(const std::string& payment_id_str, crypto::hash& payment_id); + private: bool store_keys(const std::string& keys_file_name, const std::string& password); void load_keys(const std::string& keys_file_name, const std::string& password); |