Harald Heckmann
Harald Heckmann
https://github.com/paritytech/polkadot/tree/master/xcm/pallet-xcm-benchmarks
When teleports are being enabled in the xcm configuration, the [`TransactAsset`](https://github.com/paritytech/polkadot/blob/c71e872afed296d1825b15ea4b2a74750c1ba647/xcm/xcm-executor/src/traits/transact_asset.rs) implementation for [`AlignedFractionalTransactAsset`](https://github.com/zeitgeistpm/zeitgeist/blob/085815448ca23d2af1df6db6f4bc61144e84723b/runtime/zeitgeist/src/xcm_config/config.rs#L166-L259) must be extended to support teleports.
Currently the Battery Station and Zeitgeist runtime share a lot of common code in the `xcm_config` module. This could should be deduplicated.
When someone wants to edit a market, they currently have to specify every field again: https://github.com/zeitgeistpm/zeitgeist/blob/c2c7ce9e73b63c812e1f5bb96be23cfb2d09728c/zrml/prediction-markets/src/lib.rs#L837-L869 However, most of the time only some details have to be changed, most likely...
Issue #73 fixed
List is accessed using round brackets
When trying to build the Zeitgeist runtime with the `try-runtime` feature, it fails because `pallet-author-inherent` does not pass through this feature properly. Click here to expand the error message error[E0599]:...
When using the `fork-off` sub command, the resulting chainspec contains only one massive line. Especially for bigger networks, manual edits become very cumbersome.
Chainspecs resulting from the `fork-off` subcommand use the original `paraScheduler.sessionStartBlock` value from the forked chain. This results in validators being unable to produce blocks, as the condition [`at >= session_start_block`](https://github.com/paritytech/polkadot/blob/52209dcfe546ff39cc031b92d64e787e7e8264d4/runtime/parachains/src/scheduler.rs#L347-L349)...
See https://github.com/rust-lang/rust-clippy/issues/12537. Currently we can't use that rustc version or later, because it results in errors. Occurrences: https://github.com/zeitgeistpm/zeitgeist/blob/b95839337a90000eb65da78f2186a30321a2c19a/primitives/src/math/fixed.rs#L333-L334 https://github.com/zeitgeistpm/zeitgeist/blob/b95839337a90000eb65da78f2186a30321a2c19a/primitives/src/math/root.rs#L159-L160 https://github.com/zeitgeistpm/zeitgeist/blob/b95839337a90000eb65da78f2186a30321a2c19a/zrml/neo-swaps/src/math.rs#L508-L509 https://github.com/zeitgeistpm/zeitgeist/blob/b95839337a90000eb65da78f2186a30321a2c19a/zrml/swaps/src/tests.rs#L27-L28