mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
core: fix logging the one time public key on error
This commit is contained in:
parent
5f7cddeb53
commit
71c7f8d0dc
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ namespace cryptonote
|
||||||
{
|
{
|
||||||
LOG_ERROR("derived public key mismatch with output public key at index " << idx << ", real out " << src_entr.real_output << "! "<< ENDL << "derived_key:"
|
LOG_ERROR("derived public key mismatch with output public key at index " << idx << ", real out " << src_entr.real_output << "! "<< ENDL << "derived_key:"
|
||||||
<< string_tools::pod_to_hex(in_ephemeral.pub) << ENDL << "real output_public_key:"
|
<< string_tools::pod_to_hex(in_ephemeral.pub) << ENDL << "real output_public_key:"
|
||||||
<< string_tools::pod_to_hex(src_entr.outputs[src_entr.real_output].second) );
|
<< string_tools::pod_to_hex(src_entr.outputs[src_entr.real_output].second.dest) );
|
||||||
LOG_ERROR("amount " << src_entr.amount << ", rct " << src_entr.rct);
|
LOG_ERROR("amount " << src_entr.amount << ", rct " << src_entr.rct);
|
||||||
LOG_ERROR("tx pubkey " << src_entr.real_out_tx_key << ", real_output_in_tx_index " << src_entr.real_output_in_tx_index);
|
LOG_ERROR("tx pubkey " << src_entr.real_out_tx_key << ", real_output_in_tx_index " << src_entr.real_output_in_tx_index);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue