Skip to content

Commit 8730fbb

Browse files
committed
add V16 to network version
1 parent d1bb72b commit 8730fbb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

shared/src/version/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ pub enum NetworkVersion {
4141
V14,
4242
/// actors v7
4343
V15,
44+
/// actors v8
45+
V16,
4446
}
4547

4648
impl Display for NetworkVersion {
@@ -71,6 +73,7 @@ impl TryFrom<u32> for NetworkVersion {
7173
13 => Ok(V13),
7274
14 => Ok(V14),
7375
15 => Ok(V15),
76+
16 => Ok(V16),
7477
_ => Err(value),
7578
}
7679
}

0 commit comments

Comments
 (0)