mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
WalletListener::moneySpent(), WalletListener::moneyReceived()
This commit is contained in:
parent
214014c048
commit
060bb62e29
@ -57,7 +57,7 @@ struct Wallet2CallbackImpl : public tools::i_wallet2_callback
|
|||||||
|
|
||||||
void setListener(WalletListener * listener)
|
void setListener(WalletListener * listener)
|
||||||
{
|
{
|
||||||
// TODO;
|
m_listener = listener;
|
||||||
}
|
}
|
||||||
|
|
||||||
WalletListener * getListener() const
|
WalletListener * getListener() const
|
||||||
@ -68,16 +68,35 @@ struct Wallet2CallbackImpl : public tools::i_wallet2_callback
|
|||||||
virtual void on_new_block(uint64_t height, const cryptonote::block& block)
|
virtual void on_new_block(uint64_t height, const cryptonote::block& block)
|
||||||
{
|
{
|
||||||
// TODO;
|
// TODO;
|
||||||
|
LOG_PRINT_L3(__FUNCTION__ << ": new block. height: " << height);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void on_money_received(uint64_t height, const cryptonote::transaction& tx, size_t out_index)
|
virtual void on_money_received(uint64_t height, const cryptonote::transaction& tx, size_t out_index)
|
||||||
{
|
{
|
||||||
// TODO;
|
|
||||||
|
|
||||||
|
std::string tx_hash = epee::string_tools::pod_to_hex(get_transaction_hash(tx));
|
||||||
|
uint64_t amount = tx.vout[out_index].amount;
|
||||||
|
|
||||||
|
LOG_PRINT_L3(__FUNCTION__ << ": money received. height: " << height
|
||||||
|
<< ", tx: " << tx_hash
|
||||||
|
<< ", amount: " << print_money(amount));
|
||||||
|
if (m_listener) {
|
||||||
|
m_listener->moneyReceived(tx_hash, amount);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void on_money_spent(uint64_t height, const cryptonote::transaction& in_tx, size_t out_index,
|
virtual void on_money_spent(uint64_t height, const cryptonote::transaction& in_tx, size_t out_index,
|
||||||
const cryptonote::transaction& spend_tx)
|
const cryptonote::transaction& spend_tx)
|
||||||
{
|
{
|
||||||
// TODO;
|
// TODO;
|
||||||
|
std::string tx_hash = epee::string_tools::pod_to_hex(get_transaction_hash(spend_tx));
|
||||||
|
uint64_t amount = in_tx.vout[out_index].amount;
|
||||||
|
LOG_PRINT_L3(__FUNCTION__ << ": money spent. height: " << height
|
||||||
|
<< ", tx: " << tx_hash
|
||||||
|
<< ", amount: " << print_money(amount));
|
||||||
|
if (m_listener) {
|
||||||
|
m_listener->moneySpent(tx_hash, amount);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void on_skip_transaction(uint64_t height, const cryptonote::transaction& tx)
|
virtual void on_skip_transaction(uint64_t height, const cryptonote::transaction& tx)
|
||||||
|
@ -108,6 +108,7 @@ struct WalletListener
|
|||||||
virtual ~WalletListener() = 0;
|
virtual ~WalletListener() = 0;
|
||||||
virtual void moneySpent(const std::string &txId, uint64_t amount);
|
virtual void moneySpent(const std::string &txId, uint64_t amount);
|
||||||
virtual void moneyReceived(const std::string &txId, uint64_t amount);
|
virtual void moneyReceived(const std::string &txId, uint64_t amount);
|
||||||
|
// TODO: on_skip_transaction;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user