diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-06 00:30:39 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-06 00:30:39 -0500 |
| commit | 98e3802b267fa5464e4e0a3d3c512e7e40e15fe2 (patch) | |
| tree | 5335713baa6fc5eabd67c6996c3f4e8389eebcec /src/wallet | |
| parent | de025281dc89014590f5d116e54b1662abdf38d3 (diff) | |
| parent | e7d01056f4b50dd20bf61fa535047d91efddd23a (diff) | |
| download | monzero-core-98e3802b267fa5464e4e0a3d3c512e7e40e15fe2.tar.gz monzero-core-98e3802b267fa5464e4e0a3d3c512e7e40e15fe2.tar.xz monzero-core-98e3802b267fa5464e4e0a3d3c512e7e40e15fe2.zip | |
Merge pull request #6484
e7d0105 message_store: don't print an error when there is no mms file (moneromooo-monero)
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/message_store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/message_store.cpp b/src/wallet/message_store.cpp index 1bd462ef5..25a8bd4ef 100644 --- a/src/wallet/message_store.cpp +++ b/src/wallet/message_store.cpp @@ -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; } |
