Skip to content

Commit f0fdb9d

Browse files
committed
build: update to latest lnd version
1 parent c27ea4d commit f0fdb9d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,3 +208,5 @@ require (
208208
// We want to format raw bytes as hex instead of base64. The forked version
209209
// allows us to specify that as an option.
210210
replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-display v1.33.0-hex-display
211+
212+
replace github.com/lightningnetwork/lnd => github.com/lightningnetwork/lnd v0.18.3-beta.rc3.0.20241112025221-59c072bae1ff

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,8 @@ github.com/lightninglabs/protobuf-go-hex-display v1.33.0-hex-display h1:Y2WiPkBS
496496
github.com/lightninglabs/protobuf-go-hex-display v1.33.0-hex-display/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
497497
github.com/lightningnetwork/lightning-onion v1.2.1-0.20240712235311-98bd56499dfb h1:yfM05S8DXKhuCBp5qSMZdtSwvJ+GFzl94KbXMNB1JDY=
498498
github.com/lightningnetwork/lightning-onion v1.2.1-0.20240712235311-98bd56499dfb/go.mod h1:c0kvRShutpj3l6B9WtTsNTBUtjSmjZXbJd9ZBRQOSKI=
499-
github.com/lightningnetwork/lnd v0.18.3-beta.rc3.0.20241025090009-615f3d633e61 h1:EcBM2tz+iyspYRFaDVjUe5a2bkuBWFxOWD2mzdCraUc=
500-
github.com/lightningnetwork/lnd v0.18.3-beta.rc3.0.20241025090009-615f3d633e61/go.mod h1:q2DlXwj6ev8TMbo+CvfJ3BIrqw42HFM/fSBoyCFrjdc=
499+
github.com/lightningnetwork/lnd v0.18.3-beta.rc3.0.20241112025221-59c072bae1ff h1:sLEIco0CyI13udZex6BeZsqxk06o3uRcNpFchTGmfrw=
500+
github.com/lightningnetwork/lnd v0.18.3-beta.rc3.0.20241112025221-59c072bae1ff/go.mod h1:nPRQzLla5uHPQFyyZn8r9Vgddkd23PBUDa9rggEPOfY=
501501
github.com/lightningnetwork/lnd/cert v1.2.2 h1:71YK6hogeJtxSxw2teq3eGeuy4rHGKcFf0d0Uy4qBjI=
502502
github.com/lightningnetwork/lnd/cert v1.2.2/go.mod h1:jQmFn/Ez4zhDgq2hnYSw8r35bqGVxViXhX6Cd7HXM6U=
503503
github.com/lightningnetwork/lnd/clock v1.1.1 h1:OfR3/zcJd2RhH0RU+zX/77c0ZiOnIMsDIBjgjWdZgA0=

server.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,8 @@ func (s *Server) FetchLeavesFromView(
761761
// nolint:lll
762762
func (s *Server) FetchLeavesFromCommit(chanState lnwl.AuxChanState,
763763
com channeldb.ChannelCommitment,
764-
keys lnwl.CommitmentKeyRing) lfn.Result[lnwl.CommitDiffAuxResult] {
764+
keys lnwl.CommitmentKeyRing,
765+
whoseCommit lntypes.ChannelParty) lfn.Result[lnwl.CommitDiffAuxResult] {
765766

766767
srvrLog.Debugf("FetchLeavesFromCommit called, ourBalance=%v, "+
767768
"theirBalance=%v, numHtlcs=%d", com.LocalBalance,
@@ -1159,7 +1160,8 @@ func (s *Server) ExtraBudgetForInputs(
11591160
//
11601161
// NOTE: This method is part of the sweep.AuxSweeper interface.
11611162
func (s *Server) NotifyBroadcast(req *sweep.BumpRequest,
1162-
tx *wire.MsgTx, fee btcutil.Amount) error {
1163+
tx *wire.MsgTx, fee btcutil.Amount,
1164+
outpointToTxIndex map[wire.OutPoint]int) error {
11631165

11641166
srvrLog.Tracef("NotifyBroadcast called, req=%v, tx=%v, fee=%v",
11651167
spew.Sdump(req), spew.Sdump(tx), fee)

0 commit comments

Comments
 (0)