Skip to content

Commit

Permalink
Fixed conflicts from merge, implemented suggested changes, reverted g…
Browse files Browse the repository at this point in the history
…radle props.

Signed-off-by: amsmota <amsmota@gmail.com>
  • Loading branch information
amsmota committed Sep 20, 2024
1 parent 0c6fc85 commit 62e4e24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public abstract class CommandTestAbstract {
.put(
"qbft",
new JsonObject()
.put("emptyblockperiodseconds", POA_EMPTY_BLOCK_PERIOD_SECONDS)));
.put("xemptyblockperiodseconds", POA_EMPTY_BLOCK_PERIOD_SECONDS)));
protected static final JsonObject VALID_GENESIS_IBFT2_POST_LONDON =
(new JsonObject())
.put(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void shouldThrowOnNonPositiveBlockPeriod() {
@Test
public void shouldNotThrowOnNonPositiveEmptyBlockPeriod() {
// can be 0 to be compatible with older versions
final BftConfigOptions config = fromConfigOptions(singletonMap("emptyblockperiodseconds", 0));
final BftConfigOptions config = fromConfigOptions(singletonMap("xemptyblockperiodseconds", 0));
assertThatCode(() -> config.getEmptyBlockPeriodSeconds()).doesNotThrowAnyException();
}

Expand Down

0 comments on commit 62e4e24

Please sign in to comment.