File tree 2 files changed +3
-12
lines changed
2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,6 @@ This file tracks release notes for the loop client.
16
16
17
17
#### New Features
18
18
19
- * Sweep Batcher: A new sub-system was added that handles all the loopout
20
- sweeps. Successful loopout HTLCs will no longer be swept back to the wallet via
21
- individual transactions but will instead form a single transaction that holds
22
- multiple inputs and pays to a single output. This will significantly reduce
23
- chain fee costs as it's using less block space by directly consolidating all the
24
- htlcs to a single address. Loopouts that pay to non-wallet addresses will still
25
- use individual transactions as their output cannot be mutated.
26
-
27
-
28
19
#### Breaking Changes
29
20
30
21
#### Bug Fixes
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package loop
3
3
// Copyright (c) 2013-2017 The btcsuite developers
4
4
// Copyright (c) 2015-2016 The Decred developers
5
5
// Heavily inspired by https://github.com/btcsuite/btcd/blob/master/version.go
6
- // Copyright (C) 2015-2023 The Lightning Network Developers
6
+ // Copyright (C) 2015-2024 The Lightning Network Developers
7
7
8
8
import (
9
9
"bytes"
@@ -26,8 +26,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
26
26
const (
27
27
// Note: please update release_notes.md when you change these values.
28
28
appMajor uint = 0
29
- appMinor uint = 26
30
- appPatch uint = 6
29
+ appMinor uint = 27
30
+ appPatch uint = 0
31
31
32
32
// appPreRelease MUST only contain characters from semanticAlphabet per
33
33
// the semantic versioning spec.
You can’t perform that action at this time.
0 commit comments