From 065a9f2a2c5abc17fd1393fe5fd73ebd39ad216a Mon Sep 17 00:00:00 2001 From: Pierre Rochard Date: Tue, 10 Sep 2019 20:34:18 -0400 Subject: [PATCH] Bump LND and bitcoind versions --- node_launcher/constants.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node_launcher/constants.py b/node_launcher/constants.py index 6a44a118..ff1ec920 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, 5))) +NODE_LAUNCHER_RELEASE = '.'.join(map(str, (6, 0, 6))) -TARGET_BITCOIN_RELEASE = 'v0.17.1' -TARGET_LND_RELEASE = 'v0.6-beta' +TARGET_BITCOIN_RELEASE = 'v0.18.1' +TARGET_LND_RELEASE = 'v0.7.1-beta' class StringConstant(object):