0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

Set bilingual error completely

This commit is contained in:
Hennadii Stepanov 2020-11-05 11:28:37 +02:00
parent f33e332541
commit 090b8385af
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -584,7 +584,7 @@ std::unique_ptr<SQLiteDatabase> MakeSQLiteDatabase(const fs::path& path, const D
return db;
} catch (const std::runtime_error& e) {
status = DatabaseStatus::FAILED_LOAD;
error.original = e.what();
error = Untranslated(e.what());
return nullptr;
}
}