File tree Expand file tree Collapse file tree 8 files changed +716
-578
lines changed Expand file tree Collapse file tree 8 files changed +716
-578
lines changed Original file line number Diff line number Diff line change 24
24
that would occur when an attempt was made to write a backup file for a channel
25
25
peer that has advertised an address that we do not yet know how to parse.
26
26
27
+ - Fixed [ a case] ( https://github.com/lightningnetwork/lnd/pull/9854 ) where the
28
+ ` BumpFee ` doesn't give an error response.
29
+
27
30
# New Features
28
31
29
32
## Functional Enhancements
42
45
## Code Health
43
46
44
47
## Breaking Changes
48
+
45
49
## Performance Improvements
46
50
47
51
## Deprecations
78
82
# Contributors (Alphabetical Order)
79
83
80
84
* Elle Mouton
85
+ * Yong Yu
Original file line number Diff line number Diff line change
1
+ # Release Notes
2
+ - [ Bug Fixes] ( #bug-fixes )
3
+ - [ New Features] ( #new-features )
4
+ - [ Functional Enhancements] ( #functional-enhancements )
5
+ - [ RPC Additions] ( #rpc-additions )
6
+ - [ lncli Additions] ( #lncli-additions )
7
+ - [ Improvements] ( #improvements )
8
+ - [ Functional Updates] ( #functional-updates )
9
+ - [ RPC Updates] ( #rpc-updates )
10
+ - [ lncli Updates] ( #lncli-updates )
11
+ - [ Breaking Changes] ( #breaking-changes )
12
+ - [ Performance Improvements] ( #performance-improvements )
13
+ - [ Deprecations] ( #deprecations )
14
+ - [ Technical and Architectural Updates] ( #technical-and-architectural-updates )
15
+ - [ BOLT Spec Updates] ( #bolt-spec-updates )
16
+ - [ Testing] ( #testing )
17
+ - [ Database] ( #database )
18
+ - [ Code Health] ( #code-health )
19
+ - [ Tooling and Documentation] ( #tooling-and-documentation )
20
+
21
+ # Bug Fixes
22
+
23
+ # New Features
24
+
25
+ ## Functional Enhancements
26
+
27
+ ## RPC Additions
28
+
29
+ ## lncli Additions
30
+
31
+ # Improvements
32
+
33
+ ## Functional Updates
34
+
35
+ ## RPC Updates
36
+
37
+ ## lncli Updates
38
+
39
+ ## Code Health
40
+
41
+ ## Breaking Changes
42
+
43
+ ## Performance Improvements
44
+
45
+ ## Deprecations
46
+
47
+ # Technical and Architectural Updates
48
+
49
+ ## BOLT Spec Updates
50
+
51
+ ## Testing
52
+
53
+ ## Database
54
+
55
+ ## Code Health
56
+
57
+ ## Tooling and Documentation
58
+
59
+ # Contributors (Alphabetical Order)
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ require (
11
11
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
12
12
github.com/btcsuite/btclog v0.0.0-20241003133417-09c4e92e319c
13
13
github.com/btcsuite/btclog/v2 v2.0.1-0.20250110154127-3ae4bf1cb318
14
- github.com/btcsuite/btcwallet v0.16.13
14
+ github.com/btcsuite/btcwallet v0.16.14
15
15
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5
16
16
github.com/btcsuite/btcwallet/wallet/txrules v1.2.2
17
17
github.com/btcsuite/btcwallet/walletdb v1.5.1
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ github.com/btcsuite/btclog v0.0.0-20241003133417-09c4e92e319c/go.mod h1:w7xnGOhw
62
62
github.com/btcsuite/btclog/v2 v2.0.1-0.20250110154127-3ae4bf1cb318 h1:oCjIcinPt7XQ644MP/22JcjYEC84qRc3bRBH0d7Hhd4 =
63
63
github.com/btcsuite/btclog/v2 v2.0.1-0.20250110154127-3ae4bf1cb318 /go.mod h1:XItGUfVOxotJL8kkuk2Hj3EVow5KCugXl3wWfQ6K0AE =
64
64
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d /go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg =
65
- github.com/btcsuite/btcwallet v0.16.13 h1:JGu+wrihQ0I00ODb3w92JtBPbrHxZhbcvU01O+e+lKw =
66
- github.com/btcsuite/btcwallet v0.16.13 /go.mod h1:H6dfoZcWPonM2wbVsR2ZBY0PKNZKdQyLAmnX8vL9JFA =
65
+ github.com/btcsuite/btcwallet v0.16.14 h1:CofysgmI1ednkLsXontAdBoXJkbiim7unXnFKhLLjnE =
66
+ github.com/btcsuite/btcwallet v0.16.14 /go.mod h1:H6dfoZcWPonM2wbVsR2ZBY0PKNZKdQyLAmnX8vL9JFA =
67
67
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5 h1:Rr0njWI3r341nhSPesKQ2JF+ugDSzdPoeckS75SeDZk =
68
68
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5 /go.mod h1:+tXJ3Ym0nlQc/iHSwW1qzjmPs3ev+UVWMbGgfV1OZqU =
69
69
github.com/btcsuite/btcwallet/wallet/txrules v1.2.2 h1:YEO+Lx1ZJJAtdRrjuhXjWrYsmAk26wLTlNzxt2q0lhk =
Original file line number Diff line number Diff line change @@ -463,6 +463,10 @@ var allTestCases = []*lntest.TestCase{
463
463
Name : "bumpfee" ,
464
464
TestFunc : testBumpFee ,
465
465
},
466
+ {
467
+ Name : "bumpfee external input" ,
468
+ TestFunc : testBumpFeeExternalInput ,
469
+ },
466
470
{
467
471
Name : "bumpforceclosefee" ,
468
472
TestFunc : testBumpForceCloseFee ,
You can’t perform that action at this time.
0 commit comments