diff --git a/runtime/moonriver/Cargo.toml b/runtime/moonriver/Cargo.toml index dfe1104ed0..969a2940b2 100644 --- a/runtime/moonriver/Cargo.toml +++ b/runtime/moonriver/Cargo.toml @@ -93,6 +93,7 @@ cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cu evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } rlp = "0.5" hex = "0.4" +tracing-subscriber = { version = "0.2.19", features = ["fmt"]} [build-dependencies] substrate-wasm-builder = { version = "4.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.8" } diff --git a/runtime/moonriver/tests/integration_test.rs b/runtime/moonriver/tests/integration_test.rs index 3d822556d4..00274534cd 100644 --- a/runtime/moonriver/tests/integration_test.rs +++ b/runtime/moonriver/tests/integration_test.rs @@ -541,6 +541,8 @@ fn initialize_crowdloan_addresses_with_batch_and_pay() { #[test] fn claim_via_precompile() { + tracing_subscriber::fmt::init(); + ExtBuilder::default() .with_balances(vec![ (AccountId::from(ALICE), 2_000 * MOVR),