chaind-eth

Queue server for ethereum
Info | Log | Files | Refs | README | LICENSE

chaind-eth-ready.sh (103B)


      1 #!/bin/bash
      2 
      3 >&2 echo "waiting for socket at $@ to become ready"
      4 while ! test -S $@; do
      5 	sleep 1s
      6 done