-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Conversation
@@ -13,7 +13,7 @@ name = "malus" | |||
path = "src/malus.rs" | |||
|
|||
[dependencies] | |||
polkadot-cli = { path = "../../cli", default-features = false, features = ["cli", "malus", "polkadot-native"] } | |||
polkadot-cli = { path = "../../cli", features = [ "malus", "rococo-native", "kusama-native", "westend-native", "polkadot-native" ] } |
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.
AFAIK, we're only using rococo-local and wococo-local in zombienet tests
cc @pepoviola please correct me if I'm wrong
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.
AFAIK, we're only using rococo-local and wococo-local in zombienet tests cc @pepoviola please correct me if I'm wrong
Yes, at the moment we are using only those two.
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.
polkadot-cli = { path = "../../cli", features = [ "malus", "rococo-native", "kusama-native", "westend-native", "polkadot-native" ] } | |
polkadot-cli = { path = "../../cli", features = [ "malus", "rococo-native", "polkadot-native" ] } |
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.
As errors are not propagated in zombienet, I would not do this. Before switching to edition 2021 we also compiled with the exact same set of features.
Closes: #4987