forked from tornadocash/classic-ui
9 lines
257 B
JavaScript
9 lines
257 B
JavaScript
|
export function checkRecoveryKey({ getters, dispatch }) {
|
||
|
const { encrypt: address } = getters.accounts
|
||
|
const recoveryKey = this.$sessionStorage.getItem(address)
|
||
|
|
||
|
if (!recoveryKey && !getters.encryptedPrivateKey) {
|
||
|
dispatch('removeAccount')
|
||
|
}
|
||
|
}
|