Fix a few minor typos

This commit is contained in:
Pierre Boyer 2016-12-04 14:13:54 +01:00
parent c36cb54340
commit f4772bae81
11 changed files with 27 additions and 27 deletions

View file

@ -553,7 +553,7 @@ namespace cryptonote
//check that derivated key is equal with real output key
if( !(in_ephemeral.pub == src_entr.outputs[src_entr.real_output].second.dest) )
{
LOG_ERROR("derived public key missmatch with output public key! "<< ENDL << "derived_key:"
LOG_ERROR("derived public key mismatch with output public key! "<< ENDL << "derived_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) );
return false;