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

Commit bab23f3

Browse files
authored
Merge pull request #6008 from d10r/native_solc_increase_buffer
Increase maxBuffer to 50MB when compiling using native compiler
2 parents bf6fc48 + 40a6c13 commit bab23f3

File tree

1 file changed

+1
-1
lines changed
  • packages/compile-solidity/src/compilerSupplier/loadingStrategies

1 file changed

+1
-1
lines changed

packages/compile-solidity/src/compilerSupplier/loadingStrategies/Native.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class Native {
66
load() {
77
const versionString = this.validateAndGetSolcVersion();
88
const command = "solc --standard-json";
9-
const maxBuffer = 1024 * 1024 * 10;
9+
const maxBuffer = 1024 * 1024 * 50;
1010

1111
try {
1212
return {

0 commit comments

Comments
 (0)