Skip to content

Commit

Permalink
fix: check for open AddApiBoundaryNodes proposals in network command (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic authored Jan 20, 2025
1 parent 0749701 commit 0d0e0ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rs/cli/src/commands/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ impl ExecutableCommand for Network {
omit_nodes.extend(node_ids_remove.iter().map(|node_id| node_id.to_string()));
Some(omit_nodes)
}
crate::ic_admin::ProposeCommand::AddApiBoundaryNodes { nodes, version: _version } => {
let mut omit_nodes = vec![];
omit_nodes.extend(nodes.iter().map(|node| node.to_string()));
Some(omit_nodes)
}
_ => None,
})
.flatten()
Expand Down

0 comments on commit 0d0e0ef

Please sign in to comment.