We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e077304 commit b800565Copy full SHA for b800565
testnet/stacks-node/src/run_loop/boot_nakamoto.rs
@@ -140,6 +140,10 @@ impl BootRunLoop {
140
naka_loop.start(burnchain_opt, mine_start, None)
141
}
142
143
+ // configuring mutants::skip -- this function is covered through integration tests (this function
144
+ // is pretty definitionally an integration, so thats unavoidable), and the integration tests
145
+ // do not get counted in mutants coverage.
146
+ #[cfg_attr(test, mutants::skip)]
147
fn start_from_neon(&mut self, burnchain_opt: Option<Burnchain>, mine_start: u64) {
148
let InnerLoops::Epoch2(ref mut neon_loop) = self.active_loop else {
149
panic!("FATAL: unexpectedly invoked start_from_neon when active loop wasn't neon");
0 commit comments