-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove "num_updates" channel warning
this should not be an issue anymore starting with lnd 0.15.1 (released in August 2022) fixes #92
- Loading branch information
Showing
19 changed files
with
39 additions
and
282 deletions.
There are no files selected for viewing
58 changes: 0 additions & 58 deletions
58
backend/src/main/java/de/cotto/lndmanagej/service/ChannelNumUpdatesWarningsProvider.java
This file was deleted.
Oops, something went wrong.
122 changes: 0 additions & 122 deletions
122
backend/src/test/java/de/cotto/lndmanagej/service/ChannelNumUpdatesWarningsProviderTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
model/src/main/java/de/cotto/lndmanagej/model/warnings/ChannelNumUpdatesWarning.java
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
model/src/test/java/de/cotto/lndmanagej/model/warnings/ChannelNumUpdatesWarningTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
model/src/testFixtures/java/de/cotto/lndmanagej/model/warnings/ChannelWarningFixtures.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
package de.cotto.lndmanagej.model.warnings; | ||
|
||
public class ChannelWarningFixtures { | ||
public static final ChannelNumUpdatesWarning CHANNEL_NUM_UPDATES_WARNING = new ChannelNumUpdatesWarning(101_000L); | ||
public static final ChannelBalanceFluctuationWarning CHANNEL_BALANCE_FLUCTUATION_WARNING = | ||
new ChannelBalanceFluctuationWarning(2, 97, 7); | ||
} |
4 changes: 2 additions & 2 deletions
4
model/src/testFixtures/java/de/cotto/lndmanagej/model/warnings/ChannelWarningsFixtures.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package de.cotto.lndmanagej.model.warnings; | ||
|
||
import static de.cotto.lndmanagej.model.warnings.ChannelWarningFixtures.CHANNEL_NUM_UPDATES_WARNING; | ||
import static de.cotto.lndmanagej.model.warnings.ChannelWarningFixtures.CHANNEL_BALANCE_FLUCTUATION_WARNING; | ||
|
||
public class ChannelWarningsFixtures { | ||
public static final ChannelWarnings CHANNEL_WARNINGS = new ChannelWarnings( | ||
CHANNEL_NUM_UPDATES_WARNING | ||
CHANNEL_BALANCE_FLUCTUATION_WARNING | ||
); | ||
} |
Oops, something went wrong.