Skip to content

Commit

Permalink
update hashed-pallets dependencies to version 0.1.6 (#6)
Browse files Browse the repository at this point in the history
* πŸš€ chore(Cargo.toml): update hashed-pallets dependencies to version 0.1.6 for all pallets

πŸ”§ chore(lib.rs): enable Inova spec version (169) and disable Chaos spec version (154) to align with the runtime changes

* πŸ”€ chore(lib.rs): toggle spec_version for chaos and inova specs to enable deployment
πŸ”€ chore(lib.rs): toggle spec_version for chaos and inova specs to enable deployment
  • Loading branch information
tlacloc authored Sep 29, 2023
1 parent 2e44b22 commit 0d56f92
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", b
hex-literal = { version = "0.4.1", optional = true }

# Hashed Dependencies
pallet-template = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-fruniques = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-bitcoin-vaults = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-gated-marketplace = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-rbac = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-confidential-docs = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-fund-admin = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-afloat = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-mapped-assets = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-fund-admin-records = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.5", default-features = false }
pallet-template = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-fruniques = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-bitcoin-vaults = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-gated-marketplace = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-rbac = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-confidential-docs = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-fund-admin = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-afloat = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-mapped-assets = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }
pallet-fund-admin-records = { git = "https://github.com/hashed-io/hashed-pallets", tag = "0.1.6", default-features = false }

[build-dependencies]
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
Expand Down
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
// Chaos spec version
spec_version: 154,
// spec_version: 154, // toggle this line for chaos specs only (deployment)
// Inova spec version
// spec_version: 168,
spec_version: 169, // toggle this line for inova specs only (deployment)
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit 0d56f92

Please sign in to comment.