File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 that would occur when an attempt was made to write a backup file for a channel
2525 peer that has advertised an address that we do not yet know how to parse.
2626
27+ - Fixed [ a case] ( https://github.com/lightningnetwork/lnd/pull/9854 ) where the
28+ ` BumpFee ` doesn't give an error response.
29+
2730# New Features
2831
2932## Functional Enhancements
4245## Code Health
4346
4447## Breaking Changes
48+
4549## Performance Improvements
4650
4751## Deprecations
7882# Contributors (Alphabetical Order)
7983
8084* 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 (
1111 github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
1212 github.com/btcsuite/btclog v0.0.0-20241003133417-09c4e92e319c
1313 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
1515 github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5
1616 github.com/btcsuite/btcwallet/wallet/txrules v1.2.2
1717 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
6262github.com/btcsuite/btclog/v2 v2.0.1-0.20250110154127-3ae4bf1cb318 h1:oCjIcinPt7XQ644MP/22JcjYEC84qRc3bRBH0d7Hhd4 =
6363github.com/btcsuite/btclog/v2 v2.0.1-0.20250110154127-3ae4bf1cb318 /go.mod h1:XItGUfVOxotJL8kkuk2Hj3EVow5KCugXl3wWfQ6K0AE =
6464github.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 =
6767github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5 h1:Rr0njWI3r341nhSPesKQ2JF+ugDSzdPoeckS75SeDZk =
6868github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5 /go.mod h1:+tXJ3Ym0nlQc/iHSwW1qzjmPs3ev+UVWMbGgfV1OZqU =
6969github.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{
463463 Name : "bumpfee" ,
464464 TestFunc : testBumpFee ,
465465 },
466+ {
467+ Name : "bumpfee external input" ,
468+ TestFunc : testBumpFeeExternalInput ,
469+ },
466470 {
467471 Name : "bumpforceclosefee" ,
468472 TestFunc : testBumpForceCloseFee ,
You can’t perform that action at this time.
0 commit comments