Skip to content

Commit

Permalink
Added RSKIP454 activation code
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanieliov committed Nov 20, 2024
1 parent 821de1f commit feadce3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ public enum ConsensusRule {
RSKIP427("rskip427"),
RSKIP428("rskip428"),
RSKIP434("rskip434"),
RSKIP438("rskip438")
RSKIP438("rskip438"),
RSKIP454("rskip454"),
;

private final String configKey;
Expand Down
1 change: 1 addition & 0 deletions rskj-core/src/main/resources/expected.conf
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ blockchain = {
rskip428 = <hardforkName>
rskip434 = <hardforkName>
rskip438 = <hardforkName>
rskip454 = <hardforkName>
}
}
gc = {
Expand Down
1 change: 1 addition & 0 deletions rskj-core/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ blockchain = {
rskip428 = lovell700
rskip434 = arrowhead631
rskip438 = lovell700
rskip454 = lovell700
}
}
gc = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ class ActivationConfigTest {
" rskip428: lovell700",
" rskip434: arrowhead631",
" rskip438: lovell700",
" rskip454: lovell700",
"}"
));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ private static List<ConsensusRule> getArrowhead631Rskips() {
private static List<ConsensusRule> getLovell700Rskips() {
return new ArrayList<>(Arrays.asList(
ConsensusRule.RSKIP427,
ConsensusRule.RSKIP428
ConsensusRule.RSKIP428,
ConsensusRule.RSKIP454
));
}

Expand Down

0 comments on commit feadce3

Please sign in to comment.