mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
15 lines
186 B
Bash
Executable File
15 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Path to `drk` binary
|
|
DRK="../../../drk -c drk.toml"
|
|
|
|
while true; do
|
|
if $DRK ping 2> /dev/null; then
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
$DRK scan
|
|
$DRK wallet balance
|