Skip to content

Commit

Permalink
Don't enable v5 tracing API by default (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Mar 22, 2024
1 parent b6f3539 commit 41f11e8
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions scripts/migrate-imported.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,10 @@ fn update_root_toml(args: &Args) -> Vec<String> {

// Add feature "runtime-1600" to "evm-tracing-event"
if dep_name == "evm-tracing-events" {
let Value::Array(ref mut features) = dep_table.get_or_insert("features", Array::new()) else {
panic!("expected features of `{dep_name}` to be an array or missing");
};
features.push("runtime-1600");
}
if dep_name == "moonbeam-rpc-primitives-debug" {
let Value::Array(features) = dep_table.get_or_insert("features", Array::new()) else {
panic!("expected features of `{dep_name}` to be an array or missing");
};
features.push("runtime-2900");
features.push("runtime-1600");
}

// No path => not moonbeam crate.
Expand Down

0 comments on commit 41f11e8

Please sign in to comment.