aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2015-01-15 13:59:37 +0200
committerRiccardo Spagni <ric@spagni.net>2015-01-15 13:59:48 +0200
commit580e0033579269ff54f3d6afe8871f2c6ed990b9 (patch)
treece07001ddecd96c664469ba551bc99dfbc69e4b4 /src/wallet/wallet2.h
parentMerge #216 (diff)
parentAllow get_bulk_payments to return all payments regardless of payment ID (diff)
downloadmonero-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.h1
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)