Skip to content

Commit

Permalink
Fix preimage deposit for main runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Mar 7, 2022
1 parent 07fc36f commit 2edc112
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "robonomics-node"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
description = "Robonomics node implementation in Rust & Substrate."
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion bin/node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "robonomics-rpc"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion bin/node/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "robonomics-service"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
description = "Robonomics node console line interface."
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/alpha/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alpha-runtime"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/ipci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ipci-runtime"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/local/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "local-runtime"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/main/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "main-runtime"
version = "1.7.2"
version = "1.7.3"
authors = ["Airalab <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions runtime/main/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("robonomics"),
impl_name: create_runtime_str!("robonomics-airalab"),
authoring_version: 1,
spec_version: 12,
spec_version: 13,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -328,7 +328,7 @@ impl pallet_scheduler::Config for Runtime {
parameter_types! {
pub const PreimageMaxSize: u32 = 4096 * 1024;
pub const PreimageBaseDeposit: Balance = 1 * XRT;
pub const PreimageByteDeposit: Balance = 10 * GLUSHKOV;
pub const PreimageByteDeposit: Balance = 10 * COASE;
}

impl pallet_preimage::Config for Runtime {
Expand Down

0 comments on commit 2edc112

Please sign in to comment.