From 448bf8c9bf08d5235fb3a0d0fc2347b447c53780 Mon Sep 17 00:00:00 2001 From: Pierre Rochard Date: Tue, 16 Apr 2019 18:22:04 -0400 Subject: [PATCH] bump LND version --- node_launcher/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_launcher/constants.py b/node_launcher/constants.py index c0b03a26..6a44a118 100644 --- a/node_launcher/constants.py +++ b/node_launcher/constants.py @@ -3,10 +3,10 @@ import platform from typing import Dict -NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 4))) +NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 5))) TARGET_BITCOIN_RELEASE = 'v0.17.1' -TARGET_LND_RELEASE = 'v0.6-beta-rc4' +TARGET_LND_RELEASE = 'v0.6-beta' class StringConstant(object):