core-lightning/test-cli/scripts/generate-block.sh
Rusty Russell 8f4426e09b scripts: move to scripts/ subdir, prepare for alpha.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2015-06-30 12:08:18 +09:30

17 lines
235 B
Bash
Executable File

#! /bin/sh
# Query bitcoind to get (first) unspent output to spend.
set -e
. `dirname $0`/vars.sh
case $STYLE in
alpha)
# This is a one-shot in alpha, it seems.
$CLI setgenerate true
;;
bitcoin)
$CLI generate 1
;;
esac