Skip to content

Commit ca383d9

Browse files
authored
Add cuttlefish-part2 (#1032)
## Summary Add `cuttlefish-part2` protocol update.
2 parents c8190e1 + 2c3182e commit ca383d9

File tree

19 files changed

+252
-95
lines changed

19 files changed

+252
-95
lines changed

core-rust-bridge/src/main/java/com/radixdlt/protocol/ProtocolConfig.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,16 @@ public record ProtocolConfig(
8585
public static final String GENESIS_PROTOCOL_VERSION_NAME = "babylon-genesis";
8686
public static final String ANEMONE_PROTOCOL_VERSION_NAME = "anemone";
8787
public static final String BOTTLENOSE_PROTOCOL_VERSION_NAME = "bottlenose";
88-
public static final String CUTTLEFISH_PROTOCOL_VERSION_NAME = "cuttlefish";
88+
public static final String CUTTLEFISH_PART1_PROTOCOL_VERSION_NAME = "cuttlefish";
89+
public static final String CUTTLEFISH_PART2_PROTOCOL_VERSION_NAME = "cuttlefish-part2";
8990

9091
public static ImmutableList<String> VERSION_NAMES =
9192
ImmutableList.of(
9293
GENESIS_PROTOCOL_VERSION_NAME,
9394
ANEMONE_PROTOCOL_VERSION_NAME,
9495
BOTTLENOSE_PROTOCOL_VERSION_NAME,
95-
CUTTLEFISH_PROTOCOL_VERSION_NAME);
96+
CUTTLEFISH_PART1_PROTOCOL_VERSION_NAME,
97+
CUTTLEFISH_PART2_PROTOCOL_VERSION_NAME);
9698

9799
public static final String LATEST_PROTOCOL_VERSION_NAME =
98100
VERSION_NAMES.get(VERSION_NAMES.size() - 1);

core-rust/Cargo.lock

Lines changed: 116 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)