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-01-28 19:32:28 +0000 |
| commit | f6db59b011914c2180b42ed4f6f144679a126994 (patch) | |
| tree | 3215a9b6889f19a7ba88f24fcca98e683da40542 /src/wallet | |
| parent | ff9592166828721e0f394571ab7c0d82036e9049 (diff) | |
| download | monzero-core-f6db59b011914c2180b42ed4f6f144679a126994.tar.gz monzero-core-f6db59b011914c2180b42ed4f6f144679a126994.tar.xz monzero-core-f6db59b011914c2180b42ed4f6f144679a126994.zip | |
notify: handle arbitrary tags
Diffstat (limited to 'src/wallet')
| -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 a8fe9c7cb..eaffe6472 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2041,7 +2041,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); } } //---------------------------------------------------------------------------------------------------- |
