Add case for --rpc-drone-address

This commit is contained in:
Michael Vines 2019-03-13 13:03:54 -07:00
parent 0568d7238e
commit 42ad297778
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,9 @@ while [[ ${1:0:1} = - ]]; do
elif [[ $1 = --rpc-port ]]; then
extra_fullnode_args+=("$1" "$2")
shift 2
elif [[ $1 = --rpc-drone-address ]]; then
extra_fullnode_args+=("$1" "$2")
shift 2
else
echo "Unknown argument: $1"
exit 1