-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update weight files & Runtime enum * Use workspace metadata * Always use serde serialization for asset types * Make battery station standalone runtime compilable * Make benchmark and try-runtime feature compilable * Make BS build with all features * Make parachain tests compile * Partially fix xcm tests * Use safe xcm version 2 * Update Zeitgeist runtime (except xcm tests) * Format code * Remove deprecated comment
- Loading branch information
Showing
72 changed files
with
3,894 additions
and
3,263 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
[workspace.package] | ||
authors = ["Zeitgeist PM <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://zeitgeist.pm/" | ||
license = "GPL-3.0" | ||
repository = "https://github.com/zeitgeistpm/zeitgeist" | ||
|
||
[workspace] | ||
default-members = [ | ||
"macros", | ||
|
@@ -217,6 +224,7 @@ polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", branch | |
polkadot-test-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } | ||
|
||
# Polkadot / XCM (wasm) | ||
pallet-message-queue = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } | ||
pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } | ||
polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
authors = ["Zeitgeist PM <[email protected]>"] | ||
edition = "2021" | ||
edition.workspace = true | ||
name = "zeitgeist-macros" | ||
version = "0.5.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -184,7 +184,7 @@ with-zeitgeist-runtime = ["zeitgeist-runtime"] | |
authors = ["Zeitgeist PM <[email protected]>"] | ||
build = "build.rs" | ||
description = "An evolving blockchain for prediction markets and futarchy." | ||
edition = "2021" | ||
edition.workspace = true | ||
homepage = "https://zeitgeist.pm" | ||
name = "zeitgeist-node" | ||
version = "0.5.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ orml-currencies = { workspace = true } | |
orml-tokens = { workspace = true } | ||
orml-traits = { workspace = true } | ||
parity-scale-codec = { workspace = true, features = ["derive", "max-encoded-len"] } | ||
scale-info = { workspace = true, features = ["derive"] } | ||
serde = { workspace = true, features = ["derive"], optional = true } | ||
scale-info = { workspace = true, features = ["derive", "serde"] } | ||
serde = { workspace = true, features = ["alloc", "derive", "rc"] } | ||
sp-arithmetic = { workspace = true } | ||
sp-core = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
|
@@ -38,6 +38,6 @@ std = [ | |
|
||
[package] | ||
authors = ["Zeitgeist PM <[email protected]>"] | ||
edition = "2021" | ||
edition.workspace = true | ||
name = "zeitgeist-primitives" | ||
version = "0.5.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,6 +98,7 @@ orml-asset-registry = { workspace = true, optional = true } | |
orml-unknown-tokens = { workspace = true, optional = true } | ||
orml-xcm-support = { workspace = true, optional = true } | ||
orml-xtokens = { workspace = true, optional = true } | ||
pallet-message-queue = { workspace = true, optional = true } | ||
pallet-xcm = { workspace = true, optional = true } | ||
polkadot-runtime-parachains = { workspace = true, optional = true } | ||
rococo-runtime = { workspace = true, optional = true } | ||
|
@@ -127,6 +128,7 @@ zrml-swaps = { workspace = true } | |
zrml-swaps-runtime-api = { workspace = true } | ||
|
||
[dev-dependencies] | ||
env_logger = { workspace = true } | ||
sp-io = { workspace = true, features = ["default"] } | ||
test-case = { workspace = true } | ||
xcm-simulator = { workspace = true } | ||
|
@@ -162,6 +164,7 @@ parachain = [ | |
"orml-unknown-tokens", | ||
"orml-xcm-support", | ||
"orml-xtokens", | ||
"pallet-message-queue", | ||
"pallet-xcm", | ||
"polkadot-runtime-parachains", | ||
"rococo-runtime", | ||
|
@@ -319,6 +322,7 @@ std = [ | |
"orml-unknown-tokens?/std", | ||
"orml-xcm-support?/std", | ||
"orml-xtokens?/std", | ||
"pallet-message-queue?/std", | ||
"pallet-xcm?/std", | ||
"polkadot-runtime-parachains?/std", | ||
"rococo-runtime?/std", | ||
|
@@ -428,7 +432,7 @@ force-debug = ["sp-debug-derive/force-debug"] | |
|
||
[package] | ||
authors = ["Zeitgeist PM <[email protected]>"] | ||
edition = "2021" | ||
edition.workspace = true | ||
name = "battery-station-runtime" | ||
version = "0.5.2" | ||
|
||
|
Oops, something went wrong.