Skip to content

Commit

Permalink
Node versions updated (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauthamastro authored Jul 24, 2023
2 parents 82da32d + 3fe658b commit 12411f6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadex-client"
version = "1.1.0"
version = "5.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadex-node"
version = "5.2.0"
version = "5.3.0"
authors = ["Polkadex OÜ <https://polkadex.trade>"]
description = "Polkadex main blockchain"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion pallets/ocex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-ocex-lmp"
version = "5.1.0"
version = "5.3.0"
authors = ["Gautham J <gautham@polkadex.trade>"]
edition = "2021"
license = "GNU GPL v3"
Expand Down
2 changes: 1 addition & 1 deletion pallets/ocex/src/validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ fn store_summary<T: Config>(
}

fn send_request(log_target: &str, url: &str, body: &str) -> Result<Vec<u8>, &'static str> {
let deadline = sp_io::offchain::timestamp().add(Duration::from_millis(5_000));
let deadline = sp_io::offchain::timestamp().add(Duration::from_millis(12_000));

let body_len =
serde_json::to_string(&body.as_bytes().len()).map_err(|_| "Unable to serialize")?;
Expand Down
2 changes: 1 addition & 1 deletion pallets/thea-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thea-executor"
version = "1.1.0"
version = "5.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pallets/thea-message-handler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thea-message-handler"
version = "1.1.0"
version = "5.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pallets/thea/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thea"
version = "1.1.0"
version = "5.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pallets/thea/src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ pub fn send_request(
url: &str,
body: &str,
) -> Result<serde_json::Value, &'static str> {
let deadline = sp_io::offchain::timestamp().add(Duration::from_millis(5_000));
let deadline = sp_io::offchain::timestamp().add(Duration::from_millis(12_000));

let body_len = serde_json::to_string(&body.as_bytes().len())
.map_err(|_| "Unable to to string body len")?;
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-polkadex-runtime"
version = "5.1.1"
version = "5.3.0"
authors = ["Polkadex OÜ <https://polkadex.trade>"]
edition = "2021"
license = "GNU GPL v3"
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to 0. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 288,
spec_version: 289,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down

0 comments on commit 12411f6

Please sign in to comment.