Fix accidental use of the addition assignment operator (+=).
Note to reviewers: Perhaps the \n:s should be removed too?
Fix accidental use of the addition assignment operator (+=).
Note to reviewers: Perhaps the \n:s should be removed too?
Looks like there is only one other call that uses a newline, and this is going into ThreadSafeMessageBox, so I expect they're unnecessary.
@Empact Now removing newlines as well :-)
How about also remove the last of the 3, in init.cpp? (found via /InitError\(.+\\n/)
That would also be an easy case to test how these look without newlines, because you can set the blocksdir to a non-existent location.
@Empact Thanks! Now fixed. Please re-review :-)
Tested ACK ee34012 Before:
$ src/bitcoind -blocksdir=somenonsense
Error: Specified blocks directory "somenonsense" does not exist.
$
After:
$ src/bitcoind -blocksdir=somenonsense
Error: Specified blocks directory "somenonsense" does not exist.
$
utACK ee34012c5bf590d17abc848b7ec2367816b63d14
Please squash your commits.
@MarcoFalke Squashed – please re-review :-)
utACK 620361f
utACK 620361f.
Not all errors terminate with ., could be improved in a different PR?