File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl<N: Network> From<DisconnectReason> for Message<N> {
108108impl < N : Network > Message < N > {
109109 /// The version of the network protocol; this is incremented for breaking changes between migration versions.
110110 // Note. This should be incremented for each new `ConsensusVersion` that is added.
111- pub const VERSIONS : [ ( ConsensusVersion , u32 ) ; 9 ] = [
111+ pub const VERSIONS : [ ( ConsensusVersion , u32 ) ; 10 ] = [
112112 ( ConsensusVersion :: V5 , 17 ) ,
113113 ( ConsensusVersion :: V7 , 18 ) ,
114114 ( ConsensusVersion :: V8 , 19 ) ,
@@ -122,6 +122,7 @@ impl<N: Network> Message<N> {
122122 // then jump from 24 to 25 as usual.
123123 ( ConsensusVersion :: V13 , 24 ) ,
124124 ( ConsensusVersion :: V14 , 25 ) ,
125+ ( ConsensusVersion :: V15 , 26 ) ,
125126 ] ;
126127
127128 /// Returns the latest message version.
You can’t perform that action at this time.
0 commit comments