diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2014-07-22 12:00:25 -0400 |
---|---|---|
committer | Zachary Michaels <mikezackles@gmail.com> | 2014-07-22 12:16:15 -0400 |
commit | 12596ad566b23c0b88678c01c0d1871167fefc79 (patch) | |
tree | 3d70b64f7f529681672facc1a5d766b076ef8bc8 /src/wallet/wallet2.h | |
parent | Merge pull request #65 from tewinget/daemon_rpc (diff) | |
download | monero-12596ad566b23c0b88678c01c0d1871167fefc79.tar.xz |
Add get_bulk_payments rpc call
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 1f5ae7062..d802271d1 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -143,7 +143,7 @@ namespace tools std::vector<pending_tx> create_transactions(std::vector<cryptonote::tx_destination_entry> dsts, const size_t fake_outs_count, const uint64_t unlock_time, const uint64_t fee, const std::vector<uint8_t> extra); bool check_connection(); void get_transfers(wallet2::transfer_container& incoming_transfers) const; - void get_payments(const crypto::hash& payment_id, std::list<wallet2::payment_details>& payments) const; + void get_payments(const crypto::hash& payment_id, std::list<wallet2::payment_details>& payments, uint64_t min_height = 0) const; uint64_t get_blockchain_current_height() const { return m_local_bc_height; } template <class t_archive> inline void serialize(t_archive &a, const unsigned int ver) |