You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
582 B
19 lines
582 B
7 years ago
|
const extend = require('xtend')
|
||
|
const actions = require('../actions')
|
||
|
const MetamascaraPlatform = require('../../../app/scripts/platforms/window')
|
||
|
const environmentType = require('../../../app/scripts/lib/environment-type')
|
||
|
const { OLD_UI_NETWORK_TYPE } = require('../../../app/scripts/config').enums
|
||
|
|
||
|
module.exports = reduceMetamask
|
||
|
|
||
|
function reduceMetamask (state, action) {
|
||
|
const localeMessagesState = extend({}, state.localeMessages)
|
||
|
|
||
|
switch (action.type) {
|
||
|
case actions.SET_LOCALE_MESSAGES:
|
||
|
return action.value
|
||
|
default:
|
||
|
return localeMessagesState
|
||
|
}
|
||
|
}
|