Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
r-birkner committed Jun 4, 2024
1 parent b69ec89 commit 5e13c75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions rs/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ ic-base-types = { workspace = true }
ic-management-types = { workspace = true }
url = { workspace = true }
ic-nns-governance = { workspace = true }
ic-registry-keys = { workspace = true }

[[bin]]
name = "dre"
Expand Down
4 changes: 2 additions & 2 deletions rs/cli/src/ic_admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ must be identical, and must match the SHA256 from the payload of the NNS proposa
&self,
network: &Network,
propose_options: ProposeOptions,
firewall_rules_scope: FirewallRulesScope,
firewall_rules_scope: &FirewallRulesScope,
simulate: bool,
) -> Result<(), Error> {
let local_registry_path = local_registry_path(network);
Expand Down Expand Up @@ -768,7 +768,7 @@ must be identical, and must match the SHA256 from the payload of the NNS proposa
admin_wrapper: &IcAdminWrapper,
modifications: Vec<FirewallRuleModification>,
propose_options: ProposeOptions,
firewall_rules_scope: FirewallRulesScope,
firewall_rules_scope: &FirewallRulesScope,
simulate: bool,
) -> anyhow::Result<()> {
let positions = modifications.iter().map(|modif| modif.position).join(",");
Expand Down

0 comments on commit 5e13c75

Please sign in to comment.