fix(integration-tests): keep seed dir alive during local sequencer

This commit is contained in:
Ricardo Guilherme Schmidt
2026-07-03 09:42:50 -03:00
parent fad130da17
commit 4b25a3ef76
@@ -366,8 +366,10 @@ fn ensure_release_guest_builds() -> DynResult<()> {
}
struct LocalSequencer {
// Fields drop in declaration order; shut the node down before seed cleanup.
_node: TestNode,
client: TestNodeClient,
_seed_dir: SeedDirGuard,
}
impl LocalSequencer {
@@ -385,6 +387,7 @@ impl LocalSequencer {
Ok(Self {
client: node.client(),
_node: node,
_seed_dir: seed_dir,
})
}