1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
This commit is contained in:
Frankie 2016-06-28 18:06:10 -07:00
parent af999e2bee
commit f3119d40f5

View File

@ -46,7 +46,7 @@ function mapStateToProps (state) {
unconfMsgs: state.metamask.unconfMsgs, unconfMsgs: state.metamask.unconfMsgs,
menuOpen: state.appState.menuOpen, menuOpen: state.appState.menuOpen,
network: state.metamask.network, network: state.metamask.network,
provider: state.metamask.provider provider: state.metamask.provider,
} }
} }
@ -229,7 +229,7 @@ App.prototype.renderNetworkDropdown = function () {
action: () => props.dispatch(actions.setRpcTarget('http://localhost:8545')), action: () => props.dispatch(actions.setRpcTarget('http://localhost:8545')),
icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }), icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }),
}), }),
this.renderCustomOption(props.provider.rpcTarget) this.renderCustomOption(props.provider.rpcTarget),
]) ])
} }