Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 1ae18d6

Browse files
Comment change
Co-authored-by: cds-amal <[email protected]>
1 parent addaf17 commit 1ae18d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/core/lib/console.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ class Console extends EventEmitter {
263263
"utf8"
264264
);
265265
const json = JSON.parse(body);
266-
// Vyper contracts may not have metadata field included, just push them to json blobs
266+
// Artifacts may not contain metadata. For example, early Solidity versions as well as
267+
// Vyper contracts do not include metadata. Just push them to json blobs.
267268
if (json.metadata === undefined) {
268269
jsonBlobs.push(json);
269270
} else {

0 commit comments

Comments
 (0)