fix workflow file and test changes (#6476)

This commit is contained in:
Adi Shankara
2023-08-01 13:19:29 +05:30
committed by GitHub
parent 0a99f0e9cd
commit bb0286bb82
2 changed files with 6 additions and 13 deletions

View File

@@ -1,15 +1,16 @@
name: ReadMe Sync name: ReadMe Sync
on: on:
pull_request: pull_request_target:
types: types:
- closed - closed
branches:
- 'master'
paths: paths:
- 'doc/*' - 'doc/'
jobs: jobs:
if_merged: rdme-docs:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repo 📚 - name: Check out repo 📚

View File

@@ -16,16 +16,12 @@ If you want to experiment with `lightningd`, there's a script to set up a `bitco
. contrib/startup_regtest.sh . contrib/startup_regtest.sh
``` ```
Note that your local nodeset will be much faster/more responsive if you've configured your node to expose the developer options, e.g. Note that your local nodeset will be much faster/more responsive if you've configured your node to expose the developer options, e.g.
```bash ```bash
./configure --enable-developer ./configure --enable-developer
``` ```
#### Mainnet Option #### Mainnet Option
To test with real bitcoin, you will need to have a local `bitcoind` node running: To test with real bitcoin, you will need to have a local `bitcoind` node running:
@@ -34,8 +30,6 @@ To test with real bitcoin, you will need to have a local `bitcoind` node runnin
bitcoind -daemon bitcoind -daemon
``` ```
Wait until `bitcoind` has synchronized with the network. Wait until `bitcoind` has synchronized with the network.
Make sure that you do not have `walletbroadcast=0` in your `~/.bitcoin/bitcoin.conf`, or you may run into trouble. Make sure that you do not have `walletbroadcast=0` in your `~/.bitcoin/bitcoin.conf`, or you may run into trouble.
@@ -47,8 +41,6 @@ You can start `lightningd` with the following command:
lightningd --network=bitcoin --log-level=debug lightningd --network=bitcoin --log-level=debug
``` ```
This creates a `.lightning/` subdirectory in your home directory: see `man -l doc/lightningd.8` (or [???](???)) for more runtime options. This creates a `.lightning/` subdirectory in your home directory: see `man -l doc/lightningd.8` (or [???](???)) for more runtime options.
## Using The JSON-RPC Interface ## Using The JSON-RPC Interface