diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-01-13 14:37:12 -0500 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-01-13 14:37:12 -0500 |
| commit | 2a2f02e375d0db176b998af779e447ffe871b774 (patch) | |
| tree | 9232a5dc4fed0bcdf31fbde230aab986e3f2eea5 /src/wallet/wallet2_api.h | |
| parent | cbb39b499bdadb79619c0c0b11ecd28420e8d8cc (diff) | |
| parent | db56a03ff2820f85da21c3c8fc4cc60e64c5b88d (diff) | |
| download | monzero-core-2a2f02e375d0db176b998af779e447ffe871b774.tar.gz monzero-core-2a2f02e375d0db176b998af779e447ffe871b774.tar.xz monzero-core-2a2f02e375d0db176b998af779e447ffe871b774.zip | |
Merge pull request #1559
db56a03f Wallet2 + API: Callbacks for unconfirmed transfers (Jaquee)
Diffstat (limited to 'src/wallet/wallet2_api.h')
| -rw-r--r-- | src/wallet/wallet2_api.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index a3ff5ac91..daffb48bf 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -155,6 +155,7 @@ struct TransactionInfo virtual uint64_t amount() const = 0; virtual uint64_t fee() const = 0; virtual uint64_t blockHeight() const = 0; + virtual uint64_t confirmations() const = 0; //! transaction_id virtual std::string hash() const = 0; virtual std::time_t timestamp() const = 0; @@ -237,6 +238,13 @@ struct WalletListener * @param amount - amount */ virtual void moneyReceived(const std::string &txId, uint64_t amount) = 0; + + /** + * @brief unconfirmedMoneyReceived - called when payment arrived in tx pool + * @param txId - transaction id + * @param amount - amount + */ + virtual void unconfirmedMoneyReceived(const std::string &txId, uint64_t amount) = 0; /** * @brief newBlock - called when new block received |
