File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,14 @@ func (b *BlockbeatDispatcher) Stop() {
135
135
}
136
136
137
137
func (b * BlockbeatDispatcher ) log () btclog.Logger {
138
+ // There's no guarantee that the `b.beat` is initialized when the
139
+ // dispatcher shuts down, especially in the case where the node is
140
+ // running as a remote signer, which doesn't have a chainbackend. In
141
+ // that case we will use the package logger.
142
+ if b .beat == nil {
143
+ return clog
144
+ }
145
+
138
146
return b .beat .logger ()
139
147
}
140
148
Original file line number Diff line number Diff line change 26
26
- [ Fixed] ( https://github.com/lightningnetwork/lnd/pull/9921 ) a case where the
27
27
spending notification of an output may be missed if wrong height hint is used.
28
28
29
+ - [ Fixed] ( https://github.com/lightningnetwork/lnd/pull/9962 ) a case where the
30
+ node may panic if it's running in the remote signer mode.
31
+
29
32
# New Features
30
33
31
34
## Functional Enhancements
You can’t perform that action at this time.
0 commit comments