summary refs log tree commit diff
path: root/pkgs/applications/altcoins/clightning.nix
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2018-09-24 10:57:28 -0700
committerWilliam Casarin <jb55@jb55.com>2018-09-24 11:03:00 -0700
commit2aa0b85653fad1dac0f1d22670d414d833eaf2e7 (patch)
treea0450502ffd2c14e170d9a3bc805fad47f5ce3f5 /pkgs/applications/altcoins/clightning.nix
parentd123b30ed1abd706c51c65bbf58ce5f8b882ad88 (diff)
downloadnixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.tar
nixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.tar.gz
nixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.tar.bz2
nixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.tar.lz
nixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.tar.xz
nixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.tar.zst
nixpkgs-2aa0b85653fad1dac0f1d22670d414d833eaf2e7.zip
clightning: 0.6.0 -> 0.6.1
Update to the latest release.

Highlights for c-lightning users
--------------------------------

  - Less stuck payments: Liveness ping test before locking up funds with peers.
  - Better routing: now considers size of channels.
  - Fewer spurious closes: fee estimate improvements, and new feerates command
  - Several annoying bugs fixed.

Highlights for the network
--------------------------

  - Gossipd now less spammy with channel_update.
  - option_data_loss_protect to protect peers against being out-of-date.
  - Payment errors now refer to the correct channel.

Internal Improvements
---------------------

  - Simplified client flow; after init message exchange by connectd, each is
    isolated in its own daemon.
  - JSON parameter handling vastly simplfied.
  - Python testing framework now uses proper fixtures, and split into separate
    files.
  - Many other cleanups and clarifications.
  - We keepachangelog.com!

Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat (limited to 'pkgs/applications/altcoins/clightning.nix')
-rw-r--r--pkgs/applications/altcoins/clightning.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/altcoins/clightning.nix b/pkgs/applications/altcoins/clightning.nix
index d7e4ee233a8..5ef1c06688d 100644
--- a/pkgs/applications/altcoins/clightning.nix
+++ b/pkgs/applications/altcoins/clightning.nix
@@ -4,14 +4,14 @@
 with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "clightning-${version}";
-  version = "0.6";
+  version = "0.6.1";
 
   src = fetchFromGitHub {
     fetchSubmodules = true;
     owner = "ElementsProject";
     repo = "lightning";
     rev = "v${version}";
-    sha256 = "1xbi8c7kn21wj255fxnb9s0sqnzbn3wsz4p96z084k8mw1nc71vn";
+    sha256 = "0qx30i1c97ic4ii8bm0sk9dh76nfg4ihl9381gxjj14i4jr1q8y4";
   };
 
   enableParallelBuilding = true;