|
|
@ -4,6 +4,7 @@ import { |
|
|
|
requestRevealSeedWords, |
|
|
|
requestRevealSeedWords, |
|
|
|
fetchInfoToSync, |
|
|
|
fetchInfoToSync, |
|
|
|
exportAccounts, |
|
|
|
exportAccounts, |
|
|
|
|
|
|
|
hideWarning, |
|
|
|
} from '../../store/actions'; |
|
|
|
} from '../../store/actions'; |
|
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history'; |
|
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history'; |
|
|
|
import { getMetaMaskKeyrings } from '../../selectors'; |
|
|
|
import { getMetaMaskKeyrings } from '../../selectors'; |
|
|
@ -17,6 +18,7 @@ const mapDispatchToProps = (dispatch) => { |
|
|
|
displayWarning: (message) => dispatch(displayWarning(message || null)), |
|
|
|
displayWarning: (message) => dispatch(displayWarning(message || null)), |
|
|
|
exportAccounts: (password, addresses) => |
|
|
|
exportAccounts: (password, addresses) => |
|
|
|
dispatch(exportAccounts(password, addresses)), |
|
|
|
dispatch(exportAccounts(password, addresses)), |
|
|
|
|
|
|
|
hideWarning: () => dispatch(hideWarning()), |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|