Skip to content

Commit 66293aa

Browse files
committed
Replace *-sc lib forks with originals
1 parent e2e4b07 commit 66293aa

File tree

5 files changed

+5
-6985
lines changed

5 files changed

+5
-6985
lines changed

lib/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class App {
175175
if (!this.norpc) {
176176
const defaultRpcOptions = `--accounts ${this.accounts} --port ${this.port}`;
177177
const options = (this.testrpcOptions || defaultRpcOptions) + ` --gasLimit ${gasLimitHex}`;
178-
const command = './node_modules/ethereumjs-testrpc-sc/build/cli.node.js ';
178+
const command = './node_modules/ganache-cli/build/cli.node.js ';
179179

180180
// Launch
181181
const execOpts = {maxBuffer: 1024 * 1024 * 10};

lib/instrumentSolidity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const SolidityParser = require('solidity-parser-sc');
1+
const SolidityParser = require('solidity-parser');
22
const preprocessor = require('./preprocessor');
33
const injector = require('./injector');
44
const parse = require('./parse');

lib/preprocessor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const SolExplore = require('sol-explore');
2-
const SolidityParser = require('solidity-parser-sc');
2+
const SolidityParser = require('solidity-parser');
33

44
const crRegex = /[\r\n ]+$/g;
55
/**

0 commit comments

Comments
 (0)