Skip to content
This repository was archived by the owner on Apr 20, 2020. It is now read-only.

Commit fc076a5

Browse files
committed
Merge branch 'develop' of https://github.com/cryptape/Microscope into develop
2 parents 6218d37 + 51c8ade commit fc076a5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
PUBLIC=localhost:8082
2-
CHAIN_SERVER=http://47.96.231.19:4000
2+
CHAIN_SERVERS=http://47.96.231.19:4000
33
APP_NAME=Microscope
44
LNGS=zh,en,ja-JP,ko,de,it,fr

config/webpack.config.base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = {
4242
plugins: [
4343
new webpack.DefinePlugin({
4444
'process.env': {
45-
CHAIN_SERVER: JSON.stringify(process.env.CHAIN_SERVER),
45+
CHAIN_SERVERS: JSON.stringify(process.env.CHAIN_SERVERS),
4646
APP_NAME: JSON.stringify(process.env.APP_NAME),
4747
LNGS: JSON.stringify(process.env.LNGS)
4848
},

src/initValues.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @Author: Keith-CY
33
* @Date: 2018-07-22 19:59:22
44
* @Last Modified by: Keith-CY
5-
* @Last Modified time: 2018-08-15 18:39:21
5+
* @Last Modified time: 2018-08-15 18:50:45
66
*/
77

88
import { IBlock, IBlockHeader, Transaction, Metadata, ABI } from './typings'
@@ -86,7 +86,6 @@ export const initPanelConfigs: PanelConfigs = {
8686
}
8787

8888
export const initServerList = (process.env.CHAIN_SERVERS || '').split(',')
89-
console.log(initServerList)
9089
export const initPrivateKeyList = []
9190
export const initError = { message: '', code: '' }
9291
export const initAccountState = {

0 commit comments

Comments
 (0)