From 3c8b10d597d19e14065f01cbc348b81d3c4bcb99 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 11 Jan 2018 08:56:12 -0500 Subject: [PATCH] add websocket config to blockchain config --- boilerplate/config/blockchain.json | 6 +++++- demo/config/blockchain.json | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/boilerplate/config/blockchain.json b/boilerplate/config/blockchain.json index 26c14fcc..45f4f6dd 100644 --- a/boilerplate/config/blockchain.json +++ b/boilerplate/config/blockchain.json @@ -13,7 +13,11 @@ "account": { "password": "config/development/password" }, - "wsOrigins": "http://localhost:8000" + "wsOrigins": "http://localhost:8000", + "wsRPC": true, + "wsHost": "localhost", + "wsPort": 8546 + }, }, "testnet": { "enabled": true, diff --git a/demo/config/blockchain.json b/demo/config/blockchain.json index 18888bd8..215b68c4 100644 --- a/demo/config/blockchain.json +++ b/demo/config/blockchain.json @@ -13,7 +13,10 @@ "account": { "password": "config/development/password" }, - "wsOrigins": "http://localhost:8000" + "wsOrigins": "http://localhost:8000", + "wsRPC": true, + "wsHost": "localhost", + "wsPort": 8546 }, "testnet": { "enabled": true,