Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
fix: no split in first section
Browse files Browse the repository at this point in the history
  • Loading branch information
oetyng authored and joshuef committed Mar 22, 2021
1 parent 1590414 commit 81a716f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/routing/approved.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1450,6 +1450,11 @@ impl Approved {
return Ok(commands);
}

// Do not carry out relocation in genesis section.
if self.section.prefix().is_empty() {
return Ok(commands);
}

let relocations =
relocation::actions(&self.section, &self.network, churn_name, churn_signature);

Expand Down

0 comments on commit 81a716f

Please sign in to comment.