From 1d03f01531f001bd0d20ecf164af33fae9fde72a Mon Sep 17 00:00:00 2001 From: emizzle Date: Mon, 10 Sep 2018 22:47:31 +1000 Subject: [PATCH] Update warnings in embark after upload warn user that they need to run a blockchain node and swarm for the dapp to work correctly. --- lib/modules/swarm/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/swarm/upload.js b/lib/modules/swarm/upload.js index 0d312d89..db6918d7 100644 --- a/lib/modules/swarm/upload.js +++ b/lib/modules/swarm/upload.js @@ -24,7 +24,7 @@ class Swarm { } console.log(("=== " + __("DApp available at") + ` ${self.providerUrl}/bzz:/${dir_hash}/index.html`).green); console.log(("=== " + __("DApp available at") + ` https://swarm-gateways.net/bzz:/${dir_hash}/index.html`).green); - console.log(("=== " + __("NOTE: A blockchain node must be running for the dApp to work correctly (ie 'embark run' or 'embark blockchain')").yellow)); + console.log(("=== " + __("NOTE: Swarm AND a blockchain node must be running for the dApp to work correctly (ie 'embark run')").yellow)); callback(null, dir_hash); }