diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-02-15 21:47:55 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-02-15 21:47:55 -0500 |
commit | 080358ebef569d18a6b4951ffb2c4e91b412c6b1 (patch) | |
tree | 487da0cea22b8269092084f17f54c9d61ef6464c | |
parent | Merge pull request #7265 (diff) | |
parent | Only INFO log for short seed words with ALLOW_SHORT_WORDS active (diff) | |
download | monero-080358ebef569d18a6b4951ffb2c4e91b412c6b1.tar.xz |
Merge pull request #7273
e7f5845 Only INFO log for short seed words with ALLOW_SHORT_WORDS active (rbrunner7)
-rw-r--r-- | src/mnemonics/language_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mnemonics/language_base.h b/src/mnemonics/language_base.h index bf8793aa2..1aa869e45 100644 --- a/src/mnemonics/language_base.h +++ b/src/mnemonics/language_base.h @@ -129,7 +129,7 @@ namespace Language if ((*it).size() < unique_prefix_length)
{
if (flags & ALLOW_SHORT_WORDS)
- MWARNING(language_name << " word '" << *it << "' is shorter than its prefix length, " << unique_prefix_length);
+ MINFO(language_name << " word '" << *it << "' is shorter than its prefix length, " << unique_prefix_length);
else
throw std::runtime_error("Too short word in " + language_name + " word list: " + *it);
}
|