diff --git a/src/ast-builder/builder.ts b/src/ast-builder/builder.ts index 52ab7aa7..e51b0f4e 100644 --- a/src/ast-builder/builder.ts +++ b/src/ast-builder/builder.ts @@ -74,7 +74,7 @@ export const makeBuild = async ( const sortedSources = sortASTByDependency(sourcesList, solcOutput); updateDependices(fullSources, sortedSources, config); - const ph = path.join(config.root!, config.sourcesDir!, 'sortedSources.json'); + const ph = path.join(config.root!, config.sourcesDir!, 'build/astBuild.json'); fs.writeFileSync(ph, JSON.stringify(sortedSources, null, 2)); solcOutput.sources = sortedSources; const solcInput = createInput(solcOutput);