diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-01-15 13:59:37 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-01-15 13:59:48 +0200 |
commit | 580e0033579269ff54f3d6afe8871f2c6ed990b9 (patch) | |
tree | ce07001ddecd96c664469ba551bc99dfbc69e4b4 /src/wallet/wallet2.h | |
parent | Merge #216 (diff) | |
parent | Allow get_bulk_payments to return all payments regardless of payment ID (diff) | |
download | monero-580e0033579269ff54f3d6afe8871f2c6ed990b9.tar.xz |
Merge pull request #214
87839cd Allow get_bulk_payments to return all payments regardless of payment ID (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 073fff58b..9b60d6ac5 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -211,6 +211,7 @@ namespace tools 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, uint64_t min_height = 0) const; + void get_payments(std::list<std::pair<crypto::hash,wallet2::payment_details>>& payments, uint64_t min_height) 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) |