Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix try runtime #687

Merged
merged 7 commits into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

2 changes: 2 additions & 0 deletions integration-tests/src/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ use frame_support::{
use frame_system::RawOrigin;
pub use node_primitives::*;
pub use orml_traits::{Change, GetByKey, MultiCurrency};
use sp_runtime::bounded_vec;
pub use sp_runtime::{
traits::{AccountIdConversion, BadOrigin, Convert, Zero},
DispatchError, DispatchResult, FixedPointNumber, MultiAddress,
};

pub const ALICE: [u8; 32] = [0u8; 32];
pub const BOB: [u8; 32] = [1u8; 32];

Expand Down
1 change: 1 addition & 0 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ crate-type = ["cdylib", "rlib"]
clap = { version = "3.2", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0" }
log = "0.4.17"
tracing-core = "=0.1.26"

# primitives
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.26" }
Expand Down