Skip to content

Commit 7569a86

Browse files
fix: update protocol version (#3381)
#3302 changed the protocol but didn't update protocol version.
1 parent 971f814 commit 7569a86

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/primitives/src/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub const DB_VERSION: DbVersion = 10;
1818
pub type ProtocolVersion = u32;
1919

2020
/// Current latest version of the protocol.
21-
pub const PROTOCOL_VERSION: ProtocolVersion = 38;
21+
pub const PROTOCOL_VERSION: ProtocolVersion = 39;
2222
/// TODO: Remove in next release. This is to allow nodes with initial version 34
2323
/// to be compatible with nodes at version 35
2424
pub const NETWORK_PROTOCOL_VERSION: ProtocolVersion = 34;

neard/res/genesis_config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"protocol_version": 38,
2+
"protocol_version": 39,
33
"genesis_time": "1970-01-01T00:00:00.000000000Z",
44
"chain_id": "sample",
55
"genesis_height": 0,
@@ -236,4 +236,4 @@
236236
"fishermen_threshold": "10000000000000000000000000",
237237
"minimum_stake_divisor": 10,
238238
"records": []
239-
}
239+
}

0 commit comments

Comments
 (0)