Skip to content

Commit

Permalink
fix: try-runtime log (#1832)
Browse files Browse the repository at this point in the history
Signed-off-by: Cheng JIANG <[email protected]>
  • Loading branch information
GopherJ authored Aug 2, 2022
1 parent e16c344 commit d44fae8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
11 changes: 6 additions & 5 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions node/parallel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ sc-transaction-pool-api = { git = 'https://github.com/paritytech/substrate.git',
frame-system-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.26' }
try-runtime-cli = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.26', optional = true }

clap = { version = '3.1', features = ['derive'] }
serde = { version = '1.0.136', features = ['derive'] }
serde_json = '1.0.79'
clap = { version = '3.1', features = ['derive'] }
serde = { version = '1.0.136', features = ['derive'] }
serde_json = '1.0.79'
tracing-core = '=0.1.26'

orml-oracle-rpc = { version = '0.4.1-dev', default-features = false }
substrate-frame-rpc-system = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.26' }
Expand Down
4 changes: 4 additions & 0 deletions runtime/kerria/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ pub mod paras {
pub const GLMR_KEY: u8 = 10;
}

pub mod astar {
pub const ID: u32 = 2006;
}

pub mod phala {
pub const ID: u32 = 2035;
}
Expand Down
4 changes: 4 additions & 0 deletions runtime/parallel/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ pub mod paras {
pub const GLMR_KEY: u8 = 10;
}

pub mod astar {
pub const ID: u32 = 2006;
}

pub mod phala {
pub const ID: u32 = 2035;
}
Expand Down

0 comments on commit d44fae8

Please sign in to comment.