Add --skip-ledger-verify arg

This commit is contained in:
Michael Vines 2019-10-21 10:21:43 -07:00
parent 48eafcc74f
commit 6c79f56c2c
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
2 changed files with 6 additions and 0 deletions

View File

@ -34,6 +34,9 @@ while [[ -n $1 ]]; do
elif [[ $1 = --limit-ledger-size ]]; then
args+=("$1")
shift
elif [[ $1 = --skip-ledger-verify ]]; then
args+=("$1")
shift
else
echo "Unknown argument: $1"
$program --help

View File

@ -98,6 +98,9 @@ while [[ -n $1 ]]; do
elif [[ $1 = --limit-ledger-size ]]; then
args+=("$1")
shift
elif [[ $1 = --skip-ledger-verify ]]; then
args+=("$1")
shift
elif [[ $1 = --no-snapshot-fetch ]]; then
args+=("$1")
shift