Skip to content

Commit

Permalink
Add full semver string (v)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Apr 23, 2023
1 parent 4f9280e commit 52df958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/lightning/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_version(cls):
try:
request = verrpc.VersionRequest()
response = cls.verrpcstub.GetVersion(request)
return response.version
return "v" + response.version
except Exception as e:
print(e)
return None
Expand Down

0 comments on commit 52df958

Please sign in to comment.