From 891d2a6f340c0bbc93f5ca1824ca91f3962d3113 Mon Sep 17 00:00:00 2001 From: perissology Date: Fri, 9 Nov 2018 08:57:50 -0800 Subject: [PATCH] more config updates for bug reproduction --- config/blockchain.js | 2 +- config/contracts.js | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/config/blockchain.js b/config/blockchain.js index ed22d42..f034b9d 100644 --- a/config/blockchain.js +++ b/config/blockchain.js @@ -25,7 +25,7 @@ module.exports = { mineWhenNeeded: true, // Uses our custom script (if isDev is false) to mine only when needed nodiscover: true, // Disables the peer discovery mechanism (manual peer addition) maxpeers: 0, // Maximum number of network peers (network disabled if set to 0) (default: 25) - proxy: true, // Proxy is used to present meaningful information about transactions + proxy: false, // Proxy is used to present meaningful information about transactions targetGasLimit: 8000000, // Target gas limit sets the artificial target gas floor for the blocks to mine simulatorMnemonic: "example exile argue silk regular smile grass bomb merge arm assist farm", // Mnemonic used by the simulator to generate a wallet simulatorBlocktime: 0, // Specify blockTime in seconds for automatic mining. Default is 0 and no auto-mining. diff --git a/config/contracts.js b/config/contracts.js index ff1c9e2..cdc9acc 100644 --- a/config/contracts.js +++ b/config/contracts.js @@ -4,8 +4,8 @@ module.exports = { // Blockchain node to deploy the contracts deployment: { host: 'localhost', // Host of the blockchain node - port: 8546, // Port of the blockchain node - type: 'ws', // Type of connection (ws or rpc), + port: 8545, // Port of the blockchain node + type: 'rpc', // Type of connection (ws or rpc), // Accounts to use instead of the default account to populate your wallet /*,accounts: [ { @@ -58,8 +58,6 @@ module.exports = { LiquidPledgingMock: {}, RecoveryVault: {}, LPFactory: { - deploy: false, - // gas: "8000000", args: { _vaultBase: '$LPVault', _lpBase: '$LiquidPledgingMock',