The bitcoin-tx utility uses common stdin convention -.
https://github.com/bitcoin/bitcoin/blob/536590f358dc3d3e5821eba7f1009452ea93b205/src/bitcoin-tx.cpp#L793-L796
This PR makes it explicit in the ArgsManager::ParseParameters() function.
The bitcoin-tx utility uses common stdin convention -.
https://github.com/bitcoin/bitcoin/blob/536590f358dc3d3e5821eba7f1009452ea93b205/src/bitcoin-tx.cpp#L793-L796
This PR makes it explicit in the ArgsManager::ParseParameters() function.
Is this really necessary? It's already ignored.
It's already ignored.
Yes, it is. At the end of the for-loop body ;)
Is this really necessary?
I found myself digging into the failed test/util/bitcoin-util-test.py test on my other PR.
I guess this only line of code could save time for other devs.
Explicit is better than implicit.