From b0a62424b9a84c02480666a4ba36fc1cc6028b1a Mon Sep 17 00:00:00 2001
From: cgeek <cem.moreau@gmail.com>
Date: Thu, 7 Jan 2016 22:12:08 +0100
Subject: [PATCH] Fix #297 --harmony flag is no more needed

---
 package.json | 6 +++---
 ucoin.sh     | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/package.json b/package.json
index bce044319..0331b8204 100644
--- a/package.json
+++ b/package.json
@@ -13,9 +13,9 @@
     "test": "test"
   },
   "scripts": {
-    "test": "mocha --harmony --growl --timeout 20000 test test/fast test/fast/block test/integration test/",
-    "start": "node --harmony bin/ucoind start",
-    "test-travis": "node --harmony ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --timeout 20000 test test/fast test/fast/block test/integration test/"
+    "test": "mocha --growl --timeout 20000 test test/fast test/fast/block test/integration test/",
+    "start": "node bin/ucoind start",
+    "test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --timeout 20000 test test/fast test/fast/block test/integration test/"
   },
   "repository": {
     "type": "git",
diff --git a/ucoin.sh b/ucoin.sh
index cd59eb514..6cf02408b 100755
--- a/ucoin.sh
+++ b/ucoin.sh
@@ -36,7 +36,7 @@ ucoind() {
 		#---------------------------------
 
 		start|stop|restart)
-		$NODE --harmony "$UCOIN_DIR/bin/daemon" $*
+		$NODE "$UCOIN_DIR/bin/daemon" $*
 		;;
 
 		#---------------------------------
@@ -44,7 +44,7 @@ ucoind() {
 		#---------------------------------
 
 		*)
-	  $NODE --harmony "$UCOIN_DIR/bin/ucoind" $*
+	  $NODE "$UCOIN_DIR/bin/ucoind" $*
 		;;
 
 		esac
-- 
GitLab