From c4090c37888cd53b3a2c58e91298b3841a958ffa Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Mon, 8 Apr 2019 12:05:07 +0200 Subject: [PATCH] web3 object first in config --- config/contracts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/contracts.js b/config/contracts.js index 09bd6d2..01de6f7 100644 --- a/config/contracts.js +++ b/config/contracts.js @@ -60,9 +60,9 @@ module.exports = { // assumed to be the intended environment by `embark run` development: { dappConnection: [ + "$WEB3", // uses pre existing web3 object if available (e.g in Mist) "ws://localhost:8546", "http://localhost:8545", - "$WEB3" // uses pre existing web3 object if available (e.g in Mist) ] },