mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-17 13:06:36 +02:00
16 lines
235 B
Bash
Executable file
16 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
|