diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-01 16:06:34 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-01 16:06:34 +0000 |
commit | 21c5af5a8a20a58cb913ac0a417ba3d508b2ef91 (patch) | |
tree | 9d6e7592aa2346f30547ba5ad938d37f3a7de65e /src/wallet/wallet2_api.h | |
parent | Merge pull request #1487 (diff) | |
download | monero-21c5af5a8a20a58cb913ac0a417ba3d508b2ef91.tar.xz |
wallet2_api: add an address book payment id lookup API
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index 2e1d95b58..10590d357 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -175,6 +175,7 @@ struct AddressBook virtual void refresh() = 0; virtual std::string errorString() const = 0; virtual int errorCode() const = 0; + virtual int lookupPaymentID(const std::string &payment_id) const = 0; }; struct WalletListener |