mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Fix accidental use of the addition assignment operator ("+="). Remove newlines from error message.
This commit is contained in:
parent
f58674a20a
commit
620361fce8
2 changed files with 3 additions and 3 deletions
|
|
@ -927,7 +927,7 @@ bool AppInitParameterInteraction()
|
|||
// also see: InitParameterInteraction()
|
||||
|
||||
if (!fs::is_directory(GetBlocksDir(false))) {
|
||||
return InitError(strprintf(_("Specified blocks directory \"%s\" does not exist.\n"), gArgs.GetArg("-blocksdir", "").c_str()));
|
||||
return InitError(strprintf(_("Specified blocks directory \"%s\" does not exist."), gArgs.GetArg("-blocksdir", "").c_str()));
|
||||
}
|
||||
|
||||
// if using block pruning, then disallow txindex
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue