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 dde7f3d commit e5fb4c0Copy full SHA for e5fb4c0
solcjs
@@ -51,10 +51,6 @@ function abort (msg) {
51
}
52
53
if (argv['standard-json']) {
54
- if (!solc.supportsStandard) {
55
- abort('Compiler does not support Standard JSON I/O');
56
- }
57
-
58
var size = fs.fstatSync(process.stdin.fd).size;
59
60
if (size <= 0) {
@@ -63,7 +59,7 @@ if (argv['standard-json']) {
63
64
var input = fs.readSync(process.stdin.fd, size)[0];
65
61
66
- console.log(solc.compileStandard(input));
62
+ console.log(solc.compileStandardWrapper(input));
67
process.exit(0);
68
} else if (files.length === 0) {
69
console.error('Must provide a file');
0 commit comments