mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-10 23:53:16 +01:00
8104886503
I had already disabled it, and this clears the decks for Segregated Witness which gives us everything we want. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
215 B
Bash
Executable File
15 lines
215 B
Bash
Executable File
#! /bin/sh
|
|
# Generate a block.
|
|
|
|
set -e
|
|
|
|
. `dirname $0`/vars.sh
|
|
INIT=$1
|
|
|
|
# Initially we need 100 blocks so coinbase matures, giving us funds.
|
|
if [ -n "$INIT" ]; then
|
|
$CLI generate 101
|
|
else
|
|
$CLI generate 1
|
|
fi
|