Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
ericglau committed Aug 22, 2024
1 parent b05169d commit a96ebb8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/core/src/cli/validate/validations.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { solcInputOutputDecoder, validate, ValidationRunData } from '../..';

import debug from '../../utils/debug';

import { findAll } from 'solidity-ast/utils';
import { ContractDefinition } from 'solidity-ast';

Expand Down Expand Up @@ -40,6 +42,7 @@ function addContractsFromBuildInfo(

for (const contractDef of findAll('ContractDefinition', ast)) {
const fullyQualifiedName = getFullyQualifiedName(sourcePath, contractDef.name);
debug('Found: ' + fullyQualifiedName);

sourceContracts.push({
node: contractDef,
Expand Down

0 comments on commit a96ebb8

Please sign in to comment.