diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2024-10-01 15:30:30 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2024-10-01 15:30:30 -0400 |
| commit | 83dd5152e6d115426afbb57a94a832ec91b58a46 (patch) | |
| tree | e0685979542aed3ec92b2fe828be15b4ead7564f /src/cryptonote_basic | |
| parent | b089f9ee69924882c5d14dd1a6991deb05d9d1cd (diff) | |
| parent | 65568d3a884857ce08d1170f5801a6891a5c187c (diff) | |
| download | monzero-core-83dd5152e6d115426afbb57a94a832ec91b58a46.tar.gz monzero-core-83dd5152e6d115426afbb57a94a832ec91b58a46.tar.xz monzero-core-83dd5152e6d115426afbb57a94a832ec91b58a46.zip | |
Merge pull request #9462
65568d3 build: fix build with Boost 1.85 and remove instances of viewkey logging [RELEASE] (jeffro256)
Diffstat (limited to 'src/cryptonote_basic')
| -rw-r--r-- | src/cryptonote_basic/cryptonote_format_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_basic/cryptonote_format_utils.cpp b/src/cryptonote_basic/cryptonote_format_utils.cpp index 8be23583b..e6e424c71 100644 --- a/src/cryptonote_basic/cryptonote_format_utils.cpp +++ b/src/cryptonote_basic/cryptonote_format_utils.cpp @@ -292,7 +292,7 @@ namespace cryptonote bool r = hwdev.generate_key_derivation(tx_public_key, ack.m_view_secret_key, recv_derivation); if (!r) { - MWARNING("key image helper: failed to generate_key_derivation(" << tx_public_key << ", " << ack.m_view_secret_key << ")"); + MWARNING("key image helper: failed to generate_key_derivation(" << tx_public_key << ", <viewkey>)"); memcpy(&recv_derivation, rct::identity().bytes, sizeof(recv_derivation)); } @@ -303,7 +303,7 @@ namespace cryptonote r = hwdev.generate_key_derivation(additional_tx_public_keys[i], ack.m_view_secret_key, additional_recv_derivation); if (!r) { - MWARNING("key image helper: failed to generate_key_derivation(" << additional_tx_public_keys[i] << ", " << ack.m_view_secret_key << ")"); + MWARNING("key image helper: failed to generate_key_derivation(" << additional_tx_public_keys[i] << ", <viewkey>)"); } else { |
