mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-26 16:53:12 +00:00
fix(integration-tests): keep seed dir alive during local sequencer
This commit is contained in:
parent
fad130da17
commit
4b25a3ef76
@ -366,8 +366,10 @@ fn ensure_release_guest_builds() -> DynResult<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct LocalSequencer {
|
struct LocalSequencer {
|
||||||
|
// Fields drop in declaration order; shut the node down before seed cleanup.
|
||||||
_node: TestNode,
|
_node: TestNode,
|
||||||
client: TestNodeClient,
|
client: TestNodeClient,
|
||||||
|
_seed_dir: SeedDirGuard,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl LocalSequencer {
|
impl LocalSequencer {
|
||||||
@ -385,6 +387,7 @@ impl LocalSequencer {
|
|||||||
Ok(Self {
|
Ok(Self {
|
||||||
client: node.client(),
|
client: node.client(),
|
||||||
_node: node,
|
_node: node,
|
||||||
|
_seed_dir: seed_dir,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user