update storage len

This commit is contained in:
Sathish Ambley
2019-06-16 23:30:11 -07:00
committed by Michael Vines
parent 8b41a5d725
commit 44967abd1c
3 changed files with 32 additions and 15 deletions

View File

@ -120,7 +120,7 @@ while [[ -n $1 ]]; do
fi
done
while getopts "h?T:t:o:f:rD:c:Fn:x:s:" opt "${shortArgs[@]}"; do
while getopts "h?T:t:o:f:rD:c:Fn:i:x:s:" opt "${shortArgs[@]}"; do
case $opt in
h | \?)
usage
@ -205,6 +205,9 @@ while getopts "h?T:t:o:f:rD:c:Fn:x:s:" opt "${shortArgs[@]}"; do
s)
stakeNodesInGenesisBlock=$OPTARG
;;
i)
nodeAddress=$OPTARG
;;
*)
usage "Error: unhandled option: $opt"
;;
@ -684,6 +687,12 @@ sanity)
stop)
stop
;;
stopnode)
stopNode "$nodeAddress" true
;;
startnode)
startNode "$nodeAddress" validator
;;
logs)
fetchRemoteLog() {
declare ipAddress=$1