mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-26 21:51:27 +02:00
multi: rename nolint:lll to nolint:ll
Find and replace all nolint instances refering to the `lll` linter and replace with `ll` which is the name of our custom version of the `lll` linter which can be used to ignore log lines during linting. The next commit will do the configuration of the custom linter and disable the default one.
This commit is contained in:
@@ -256,7 +256,7 @@ out:
|
||||
// TODO(wilmer): add retry logic if rescan fails?
|
||||
b.wg.Add(1)
|
||||
|
||||
//nolint:lll
|
||||
//nolint:ll
|
||||
go func(msg *chainntnfs.HistoricalConfDispatch) {
|
||||
defer b.wg.Done()
|
||||
|
||||
@@ -301,7 +301,7 @@ out:
|
||||
// TODO(wilmer): add retry logic if rescan fails?
|
||||
b.wg.Add(1)
|
||||
|
||||
//nolint:lll
|
||||
//nolint:ll
|
||||
go func(msg *chainntnfs.HistoricalSpendDispatch) {
|
||||
defer b.wg.Done()
|
||||
|
||||
|
@@ -366,7 +366,7 @@ out:
|
||||
// TODO(wilmer): add retry logic if rescan fails?
|
||||
b.wg.Add(1)
|
||||
|
||||
//nolint:lll
|
||||
//nolint:ll
|
||||
go func(msg *chainntnfs.HistoricalConfDispatch) {
|
||||
defer b.wg.Done()
|
||||
|
||||
|
@@ -439,7 +439,7 @@ func (n *NeutrinoNotifier) notificationDispatcher() {
|
||||
// potentially long rescans.
|
||||
n.wg.Add(1)
|
||||
|
||||
//nolint:lll
|
||||
//nolint:ll
|
||||
go func(msg *chainntnfs.HistoricalConfDispatch) {
|
||||
defer n.wg.Done()
|
||||
|
||||
|
Reference in New Issue
Block a user