mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-22 15:35:10 +01:00
add channel enabled status to fee configuration
This commit is contained in:
@@ -8,7 +8,14 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
class FeeConfigurationDtoTest {
|
||||
@Test
|
||||
void createFrom() {
|
||||
FeeConfigurationDto expected = new FeeConfigurationDto(1, 2, 3, 4);
|
||||
FeeConfigurationDto expected = new FeeConfigurationDto(
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
false,
|
||||
true
|
||||
);
|
||||
|
||||
FeeConfigurationDto dto = FeeConfigurationDto.createFrom(FEE_CONFIGURATION);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user