Skip to content

Commit 9bb0783

Browse files
author
MarcoFalke
committed
Merge bitcoin#20308: wallet: Set bilingual error completely
090b838 Set bilingual error completely (Hennadii Stepanov) Pull request description: Fix bitcoin-core/gui#128 ACKs for top commit: MarcoFalke: review ACK 090b838 practicalswift: ACK 090b838: patch looks correct! Tree-SHA512: ef400291a866c3116377a4439a23de89a1c5e3ef4597d682138f88d90612846aabb31228b98a8722e7f58b4b499a58adc732bc40ac28fae6d18fce1d4953c96a
2 parents d94777b + 090b838 commit 9bb0783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/sqlite.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ std::unique_ptr<SQLiteDatabase> MakeSQLiteDatabase(const fs::path& path, const D
584584
return db;
585585
} catch (const std::runtime_error& e) {
586586
status = DatabaseStatus::FAILED_LOAD;
587-
error.original = e.what();
587+
error = Untranslated(e.what());
588588
return nullptr;
589589
}
590590
}

0 commit comments

Comments
 (0)