message_store: don't print an error when there is no mms file

It confuses people
This commit is contained in:
moneromooo-monero 2020-04-27 15:43:22 +00:00
parent 378cdeaeae
commit e7d01056f4
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ void message_store::read_from_file(const multisig_wallet_state &state, const std
{
// Simply do nothing if the file is not there; allows e.g. easy recovery
// from problems with the MMS by deleting the file
MERROR("No message store file found: " << filename);
MINFO("No message store file found: " << filename);
return;
}