From 66b4c7d09ec10e4accbe370a79b9391e06faf863 Mon Sep 17 00:00:00 2001 From: wbt Date: Mon, 18 Feb 2019 14:39:32 -0500 Subject: [PATCH] Uncomment default network configs Offering solution A from https://github.com/trufflesuite/truffle/issues/1726 --- truffle-config.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/truffle-config.js b/truffle-config.js index 3b00c8a7..cf2c7c67 100644 --- a/truffle-config.js +++ b/truffle-config.js @@ -1,10 +1,8 @@ module.exports = { - // Uncommenting the defaults below - // provides for an easier quick-start with Ganache. + // The defaults below provide an easier quick-start with Ganache. // You can also follow this format for other networks; // see - // for more details on how to specify configuration options! - /* + // for more details on how to specify configuration options! networks: { development: { host: "127.0.0.1", @@ -17,5 +15,4 @@ module.exports = { network_id: "*" } } - */ };