lnd-rust 0.5.0

Rust binding to the Lightning Network Daemon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash -e

mkdir -p data/bitcoind

bitcoind \
    -blocknotify="echo New block %s" \
    -datadir=data/bitcoind \
    -txindex \
    -debug=1 \
    -printtoconsole \
    -server \
    -regtest \
    -rpcport=18443 \
    -rpcuser=user \
    -rpcpassword=password \
    -zmqpubrawblock=tcp://127.0.0.1:18501 \
    -zmqpubrawtx=tcp://127.0.0.1:18502 \
    $@