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 a858cb3 commit c8d47e2Copy full SHA for c8d47e2
packages/common/src/codegen/utils/parseSystem.ts
@@ -16,6 +16,7 @@ export function parseSystem(
16
17
const contractType = contractNode.kind;
18
// skip libraries and interfaces
19
+ // we allow abstract systems here so that we can create system libraries from them but without deploying them
20
if (contractType !== "contract" && contractType !== "abstract") return;
21
22
const isSystem = ((): boolean => {
0 commit comments