Check which C-Lightning version I am running?

0

Ive downloaded and unpacked the new version 0.6 but is there anyway I can check through CLI commands which version i'm running to ensure the update worked?

Fontaine

Posted 2018-07-31T03:09:29.703

Reputation: 158

Answers

1

Sure, just use:

$ lightning-cli --version
v0.6-127-gf8fa421

JBaczuk

Posted 2018-07-31T03:09:29.703

Reputation: 6 172

1Notice that the first part (v0.6) shows the latest release this version is built on, followed by the number of patches applied on top (127) and then the git commit that was built (prefix g, commit f8fa421). This allows us to pinpoint exactly which commit you have built.cdecker 2018-07-31T09:46:36.273