From e56d5365cb6c2bd8dd83842e07a7ec0291d6922b Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Sun, 30 Aug 2020 07:57:34 +0000 Subject: [PATCH 1/2] loop: update 0.7.0 -> 0.8.1 --- pkgs/lightning-loop/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/lightning-loop/default.nix b/pkgs/lightning-loop/default.nix index f1b7e1a..3020cd5 100644 --- a/pkgs/lightning-loop/default.nix +++ b/pkgs/lightning-loop/default.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "lightning-loop"; - version = "0.7.0-beta"; + version = "0.8.1-beta"; src = fetchurl { url = "https://github.com/lightninglabs/loop/archive/v${version}.tar.gz"; # Use ./get-sha256.sh to fetch latest (verified) sha256 - sha256 = "fbb5ae6dd55002a632a924e41a0bb2ce886eb9e834668be35b312b14e8b68233"; + sha256 = "36815049c7807b1f0b2b0694ae64b2ec23819240952cb327c9b9e0d530ac4696"; }; subPackages = [ "cmd/loop" "cmd/loopd" ]; - vendorSha256 = "1g0l09zcic5nnrsdyap40dj3zl59gbb2k8iirhph3257ysa52mhr"; + vendorSha256 = "0y1j4ca4njx9fyyq3qv8hmcvs5ig6kyx6hhp1bdby7wgmlc0s5vp"; meta = with lib; { description = " Lightning Loop: A Non-Custodial Off/On Chain Bridge"; From fc15d507ff43c9b18ac5faf1af68294e32e66f41 Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Sun, 30 Aug 2020 08:07:02 +0000 Subject: [PATCH 2/2] loop: adjust test to new message --- test/base.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/base.py b/test/base.py index 0e72de3..9950d56 100644 --- a/test/base.py +++ b/test/base.py @@ -78,7 +78,10 @@ def run_tests(extra_tests): # Check that lightning-loop fails with the right error, making sure # lightning-loop can connect to lnd machine.wait_until_succeeds( - log_has_string("lightning-loop", "chain notifier RPC isstill in the process of starting") + log_has_string( + "lightning-loop", + "Waiting for lnd to be fully synced to its chain backend, this might take a while", + ) ) assert_running("spark-wallet")