2
0
mirror of https://github.com/lnbook/lnbook synced 2024-11-18 21:28:03 +00:00

source formatting

This commit is contained in:
Andreas M. Antonopoulos 2021-03-23 11:08:43 -06:00
parent 6840a842af
commit 6c6b2c9c80

View File

@ -593,6 +593,7 @@ install cli/lightning-cli lightningd/lightningd /usr/local/bin
In order to verify that the +lightningd+ and +lightning-cli+ commands have been installed correctly we will ask each executable for its version information: In order to verify that the +lightningd+ and +lightning-cli+ commands have been installed correctly we will ask each executable for its version information:
[source,bash]
---- ----
$ lightningd --version $ lightningd --version
v0.8.1rc2 v0.8.1rc2
@ -614,6 +615,7 @@ In the next few sections we will build a docker container to run LND, build LND
If you have followed the previous examples in this chapter, you should be quite familiar with the basic docker commands by now. In this section we will repeat them to build the LND container. The container is located in +code/docker/lnd+. We issue commands in a terminal to change the working directory to +code/docker+ and perform the +docker build+ command: If you have followed the previous examples in this chapter, you should be quite familiar with the basic docker commands by now. In this section we will repeat them to build the LND container. The container is located in +code/docker/lnd+. We issue commands in a terminal to change the working directory to +code/docker+ and perform the +docker build+ command:
[source,bash]
---- ----
$ cd code/docker $ cd code/docker
$ docker build -t lnbook/lnd lnd $ docker build -t lnbook/lnd lnd
@ -887,6 +889,7 @@ We have OpenJDK 11.0.7 and Maven 3.6.1, so we're ready.
The source code for Eclair is on Github. The +git clone+ command can create a local copy for us. Let's change to our home directory and run it there: The source code for Eclair is on Github. The +git clone+ command can create a local copy for us. Let's change to our home directory and run it there:
[source,bash]
---- ----
$ cd ~ $ cd ~
$ git clone https://github.com/ACINQ/eclair.git $ git clone https://github.com/ACINQ/eclair.git