-
Notifications
You must be signed in to change notification settings - Fork 11
Conversation
Both commands should work cargo run --release --features=try-runtime --features=bajun --bin=bajun-para \
try-runtime \
--runtime=./target/release/wbuild/bajun-runtime/bajun_runtime.compact.compressed.wasm \
--wasm-execution=compiled \
--chain=./resources/bajun/bajun-raw.json \
on-runtime-upgrade --checks live \
--uri="ws://rpc-parachain.bajun.network:9944"
cargo run --release --features=try-runtime --features=ajuna --bin=ajuna-para \
try-runtime \
--runtime=./target/release/wbuild/ajuna-runtime/ajuna_runtime.compact.compressed.wasm \
--wasm-execution=compiled \
--chain=./resources/ajuna/ajuna-raw.json \
on-runtime-upgrade --checks live \
--uri="ws://rpc-parachain.ajuna.network:9944"
|
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## develop #316 +/- ##
===========================================
- Coverage 71.16% 71.14% -0.03%
===========================================
Files 33 33
Lines 3357 3358 +1
===========================================
Hits 2389 2389
- Misses 968 969 +1
☔ View full report in Codecov by Sentry. |
Can you fix the error, so we can merge?
|
c3e8f3d
to
a74567d
Compare
@darkfriend77 When you run the command against bajun, you'll see this line fail:
@DidacSF will be able to help you out. It's most likely the data on bajun-kusama have changed since. |
Yeah, I've updated the estimates using the latest data from Kusama, that should put us in a more accurate details when performing the migration |
Yep, I already did that locally to have it reflect the balun storage. However, this will fail for Rococo, so we will need to have it set in different versions. @cowboy-bebug @DidacSF |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
error[E0308]: mismatched types
--> node/cli/src/para/command.rs:330:5
|
194 | / match &cli.subcommand {
195 | | Some(Subcommand::BuildSpec(cmd)) => {
196 | | let runner = cli.create_runner(cmd)?;
197 | | runner.sync_run(|config| cmd.run(config.chain_spec, config.network))
... |
330 | |/ runner.async_run(|| {
331 | || Ok((
332 | || cmd.run::<AjunaBlock, HostFunctionsOf, >(Some(
333 | || timestamp_with_aura_info::(6000),
... ||
336 | || ))
337 | || })
| ||__________^ expected ()
, found enum Result
... |
446 | | },
447 | | }
| |- expected this to be ()
Description
Please describe your pull request and link relevant issues.
Type of changes
build
: Changes that affect the build system or external dependencies (eg, Cargo, Docker)ci
: Changes to CI configurationdocs
: Changes to documentation onlyfeat
: Changes to add a new featurefix
: Changes to fix a bugrefactor
: Changes that do not alter functionalitystyle
: Changes to format the codetest
: Changes to add missing tests or correct existing testsChecklist
cargo fmt --all
cargo clippy --all-features --all-targets
cargo test --workspace --all-features --all-targets