update storage len
This commit is contained in:
committed by
Michael Vines
parent
8b41a5d725
commit
44967abd1c
11
net/net.sh
11
net/net.sh
@ -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
|
||||
|
Reference in New Issue
Block a user