Skip to content

Commit

Permalink
Merge branch 'fixes-for-beos' of https://github.com/efe-dev/eos-voter
Browse files Browse the repository at this point in the history
…into efe-dev-fixes-for-beos
  • Loading branch information
aaroncox committed Jan 14, 2019
2 parents a1358f8 + 2062400 commit 63be23c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/shared/actions/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export function historyPluginCheck() {
const {
connection,
} = getState();

return eos(connection).getActions('teamgreymass').then((result) => dispatch({
const historyAccount = connection.chain === 'BEOS' ? 'beos.gateway' : 'teamgreymass';
return eos(connection).getActions(historyAccount).then((result) => dispatch({
type: types.SET_CONNECTION_HISTORY_PLUGIN_ENABLED,
payload: { enabled: (result.actions && result.actions.length !== 0) }
})).catch(() => dispatch({
Expand Down
2 changes: 1 addition & 1 deletion app/shared/reducers/blockchains.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const knownChains = [
'regproxyinfo',
],
symbol: 'BEOS',
testnet: true
testnet: false
},
{
_id: 'eos-mainnet',
Expand Down

0 comments on commit 63be23c

Please sign in to comment.