We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bb72b commit 8730fbbCopy full SHA for 8730fbb
shared/src/version/mod.rs
@@ -41,6 +41,8 @@ pub enum NetworkVersion {
41
V14,
42
/// actors v7
43
V15,
44
+ /// actors v8
45
+ V16,
46
}
47
48
impl Display for NetworkVersion {
@@ -71,6 +73,7 @@ impl TryFrom<u32> for NetworkVersion {
71
73
13 => Ok(V13),
72
74
14 => Ok(V14),
75
15 => Ok(V15),
76
+ 16 => Ok(V16),
77
_ => Err(value),
78
79
0 commit comments