@@ -3,8 +3,8 @@ c-lightning
3
3
4
4
Basic Setup:
5
5
6
- 1 . Follow instructions in ` doc/INSTALL.md `
7
- 2 . Follow instructions in the "Build and Development" section in ` doc/HACKING.md `
6
+ 1 . Follow instructions in [ ` doc/INSTALL.md ` ] ( ../../doc/INSTALL.md )
7
+ 2 . Follow instructions in the "Build and Development" section in [ ` doc/HACKING.md ` ] ( ../../doc/HACKING.md )
8
8
3 . Make sure you have cloned this repository
9
9
10
10
On Ubuntu:
@@ -19,7 +19,7 @@ Validating Lightning Signer:
19
19
20
20
# In parent directory of c-lightning root
21
21
git clone [email protected] :lightning-signer/validating-lightning-signer.git
22
- cargo build --features log_pretty_print,debug_enforcement_state
22
+ cargo build
23
23
24
24
C-Lightning:
25
25
@@ -30,16 +30,8 @@ C-Lightning:
30
30
31
31
(cd contrib/remote_hsmd && \
32
32
ln -s ../../../validating-lightning-signer/lightning-signer-server/src/server/remotesigner.proto)
33
- # Then do ls -alt contrib/remote_hsmd/remotesigner.proto and make sure the link is valid
34
-
35
- # Then install some python dependencies
36
- pip3 install --user base58 bitstring secp256k1 mrkd
37
-
38
- # In c-lightning root, remote-hsmd branch:
39
- pip3 install --user -r requirements.txt
40
-
41
- # Temporarily downgrade markupsafe to avoid breaking dependencies
42
- pip3 install --user markupsafe==2.0.1
33
+ # Then make sure the link is valid
34
+ if [ -f contrib/remote_hsmd/remotesigner.proto ]; then echo "Symbolic link successful"; else echo "Symbolic link failed"; fi
43
35
44
36
# Build c-lightning
45
37
make distclean
0 commit comments