diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-01-09 14:28:42 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-12 12:15:59 +0000 |
commit | 842a5d8bbeb181d4b0f87eaaae4174b0532982ea (patch) | |
tree | 1ff48603f32ba2c71a693d169be1a26d7f2144e6 /src/wallet/wallet2.cpp | |
parent | ArticMine's new block weight algorithm (diff) | |
download | monero-842a5d8bbeb181d4b0f87eaaae4174b0532982ea.tar.xz |
notify: handle arbitrary tags
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 1956febb9..b02c95457 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1861,7 +1861,7 @@ void wallet2::process_new_transaction(const crypto::hash &txid, const cryptonote { std::shared_ptr<tools::Notify> tx_notify = m_tx_notify; if (tx_notify) - tx_notify->notify(epee::string_tools::pod_to_hex(txid).c_str()); + tx_notify->notify("%s", epee::string_tools::pod_to_hex(txid).c_str(), NULL); } } //---------------------------------------------------------------------------------------------------- |