diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-06-08 14:07:45 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-06-08 14:07:45 -0500 |
| commit | 3a577f1ce79bf69d8086a4e5a638f8f17c80b3e4 (patch) | |
| tree | e15086d38b666de4443f4ba030b7d50549c1ac07 /src/wallet/api/wallet.cpp | |
| parent | 967285a9faef89e1ce7f24697f336959a34b845c (diff) | |
| parent | 86cf811a3971750f704afbf282a449e418505659 (diff) | |
| download | monzero-core-3a577f1ce79bf69d8086a4e5a638f8f17c80b3e4.tar.gz monzero-core-3a577f1ce79bf69d8086a4e5a638f8f17c80b3e4.tar.xz monzero-core-3a577f1ce79bf69d8086a4e5a638f8f17c80b3e4.zip | |
Merge pull request #6525
86cf811 simplewallet: don't complain about incoming payment ids on change (moneromooo-monero)
Diffstat (limited to 'src/wallet/api/wallet.cpp')
| -rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index d89261c64..0badd922a 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -157,7 +157,7 @@ struct Wallet2CallbackImpl : public tools::i_wallet2_callback } } - virtual void on_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, const cryptonote::subaddress_index& subaddr_index, uint64_t unlock_time) + virtual void on_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, const cryptonote::subaddress_index& subaddr_index, bool is_change, uint64_t unlock_time) { std::string tx_hash = epee::string_tools::pod_to_hex(txid); |
