net/: startnode/stopnode now works for blockstreamer/replicator nodes (#5146)

* startnode/stopnode now works for blockstreamer/replicator nodes

* Plumb --skip-ledger-verify through net/
This commit is contained in:
Michael Vines
2019-07-17 19:26:23 -07:00
committed by GitHub
parent 6ad9dc18d8
commit b58558ea4e
3 changed files with 91 additions and 25 deletions

View File

@ -220,6 +220,9 @@ while [[ -n $1 ]]; do
elif [[ $1 = --no-voting ]]; then
args+=("$1")
shift
elif [[ $1 = --skip-ledger-verify ]]; then
args+=("$1")
shift
elif [[ $1 = --no-sigverify ]]; then
args+=("$1")
shift