mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-19 13:17:42 +02:00
11 lines
326 B
Bash
Executable file
11 lines
326 B
Bash
Executable file
#! /bin/sh -e
|
|
# This pretends to be lightning_gossip_compactd, but waits until the file "compactd-continue"
|
|
# exists. This lets us test race conditions.
|
|
|
|
if [ x"$1" != x"--version" ]; then
|
|
while [ ! -f "compactd-continue" ]; do
|
|
sleep 1
|
|
done
|
|
fi
|
|
|
|
exec "$(dirname "$0")"/../../lightningd/lightning_gossip_compactd "$@"
|