mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-08 06:49:31 +01:00
8f4426e09b
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
235 B
Bash
Executable File
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
|