We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9355186 commit 4bf18b0Copy full SHA for 4bf18b0
src/bitcoin-tx.cpp
@@ -772,9 +772,7 @@ static std::string readStdin()
772
if (ferror(stdin))
773
throw std::runtime_error("error reading stdin");
774
775
- boost::algorithm::trim_right(ret);
776
-
777
- return ret;
+ return TrimString(ret);
778
}
779
780
static int CommandLineRawTx(int argc, char* argv[])
test/lint/lint-locale-dependence.sh
@@ -39,7 +39,6 @@ export LC_ALL=C
39
40
KNOWN_VIOLATIONS=(
41
"src/bitcoin-tx.cpp.*stoul"
42
- "src/bitcoin-tx.cpp.*trim_right"
43
"src/dbwrapper.cpp.*stoul"
44
"src/dbwrapper.cpp:.*vsnprintf"
45
"src/node/blockstorage.cpp:.*atoi"
0 commit comments