Skip to content

Commit da13ebb

Browse files
Updated afloat pallet config implementation to remove the TimeProvider type. Updated hashed pallets to version 0.1.10. Added command to run the zombinet network.
1 parent ea17097 commit da13ebb

File tree

4 files changed

+22
-21
lines changed

4 files changed

+22
-21
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashed-parachain-runtime"
3-
version = "0.1.0-dev"
3+
version = "0.1.1"
44
description = "Runtime of the hashed substrate node"
55
authors = ["Hashed <https://github.com/hashed-io"]
66
homepage = "https://hashed.io"
@@ -23,17 +23,17 @@ scale-info = { version = "2.10.0", default-features = false, features = ["derive
2323
smallvec = "1.11.0"
2424

2525
# Hashed Dependencies
26-
pallet-template = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
27-
pallet-fruniques = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
28-
pallet-bitcoin-vaults = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
26+
pallet-template = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
27+
pallet-fruniques = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
28+
pallet-bitcoin-vaults = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
2929
# pallet-bitcoin-vaults = { path = "../../hashed-pallets/pallets/bitcoin-vaults", default-features = false }
30-
pallet-gated-marketplace = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
31-
pallet-rbac = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
32-
pallet-confidential-docs = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
30+
pallet-gated-marketplace = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
31+
pallet-rbac = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
32+
pallet-confidential-docs = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
3333
# pallet-confidential-docs = { path = "../../hashed-pallets/pallets/confidential-docs", default-features = false }
34-
pallet-afloat = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
35-
pallet-mapped-assets = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
36-
pallet-fund-admin-records = { git = "https://github.com/hashed-io/hashed-pallets", branch = "feature/bump-v1.3.0", default-features = false }
34+
pallet-afloat = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
35+
pallet-mapped-assets = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
36+
pallet-fund-admin-records = { git = "https://github.com/hashed-io/hashed-pallets", tag ="0.1.10", default-features = false }
3737

3838
# Prebuilt Pallets
3939
pallet-alliance = { git = "https://github.com/paritytech/polkadot-sdk", tag = "v1.3.0-rc1", default-features = false }

runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ impl pallet_gated_marketplace::Config for Runtime {
11381138
impl pallet_afloat::Config for Runtime {
11391139
type RuntimeEvent = RuntimeEvent;
11401140
type Currency = Balances;
1141-
type TimeProvider = Timestamp;
1141+
// type TimeProvider = Timestamp;
11421142
//type RemoveOrigin = EnsureRoot<AccountId>;
11431143
type Rbac = RBAC;
11441144
type ItemId = u32;

zombienet/small_network.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# HOW TO RUN: zombienet-linux-x64 spawn --provider native small_network.toml
12
[relaychain]
23
default_image = "parity/polkadot:latest"
34
default_command = "polkadot"

0 commit comments

Comments
 (0)