Skip to content

Commit 4d63b5a

Browse files
committed
Cleanup
1 parent b58433c commit 4d63b5a

File tree

3 files changed

+2
-16
lines changed

3 files changed

+2
-16
lines changed

packages/common/src/compiling/CompileRegistry.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,7 @@ import {
77
AtomicCompileHelper,
88
CompileTarget,
99
} from "./AtomicCompileHelper";
10-
import { CompilableModule } from "./CompilableModule";
1110

12-
interface GenericCompilableModule<Artifact> {
13-
compile(registry: CompileRegistry): Promise<Artifact>;
14-
}
15-
16-
export type InferDependencyArtifacts<
17-
Dependencies extends Record<string, CompilableModule>,
18-
> = {
19-
[Key in keyof Dependencies]: Dependencies[Key] extends GenericCompilableModule<
20-
infer Artifact
21-
>
22-
? Artifact
23-
: void;
24-
};
2511
/**
2612
* The CompileRegistry compiles "compilable modules"
2713
* (i.e. zkprograms, contracts or contractmodules)

packages/persistance/test-integration/SequencerRestart.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe("sequencer restart", () => {
3232
},
3333
});
3434

35-
await appChain.start(container.createChildContainer());
35+
await appChain.start(false, container.createChildContainer());
3636
};
3737

3838
const teardown = async () => {

packages/sdk/test/networkstate/NetworkState.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe.skip("block production", () => {
6060
});
6161

6262
// Start AppChain
63-
await app.start(container.createChildContainer());
63+
await app.start(false, container.createChildContainer());
6464
appchain = app;
6565

6666
({ runtime, protocol } = app);

0 commit comments

Comments
 (0)