Skip to content

Commit

Permalink
Merge pull request #3039 from massalabs/testnet_14_5
Browse files Browse the repository at this point in the history
Update version
  • Loading branch information
damip authored Sep 19, 2022
2 parents 11b1fca + d4cf765 commit 9a98573
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/technical-doc/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openrpc": "1.2.4",
"info": {
"title": "Massa OpenRPC",
"version": "TEST.14.4",
"version": "TEST.14.5",
"description": "Massa OpenRPC spec",
"termsOfService": "https://open-rpc.org",
"contact": {
Expand Down
4 changes: 2 additions & 2 deletions massa-models/src/config/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lazy_static::lazy_static! {
.saturating_add(MassaTime::from_millis(1000 * 10))
)
} else {
1663419600000.into() // Saturday, September 17, 2022 1:00:00 PM UTC
1663605000000.into() // Saturday, September 19, 2022 16:30:00 PM UTC
};

/// TESTNET: time when the blockclique is ended.
Expand All @@ -64,7 +64,7 @@ lazy_static::lazy_static! {
if cfg!(feature = "sandbox") {
"SAND.0.0"
} else {
"TEST.14.4"
"TEST.14.5"
}
.parse()
.unwrap()
Expand Down
4 changes: 2 additions & 2 deletions massa-models/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ impl Version {
pub fn is_compatible(&self, other: &Version) -> bool {
self.instance == other.instance
&& self.major == other.major
&& self.minor >= 3
&& other.minor >= 3
&& self.minor >= 5
&& other.minor >= 5
}
}

Expand Down

0 comments on commit 9a98573

Please sign in to comment.