mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-25 16:04:17 +01:00
FIX: Error trying to import wallets derived from the same seed in different accounts after updating
This commit is contained in:
parent
a8c4fdd20c
commit
38e26ccbd6
1 changed files with 2 additions and 2 deletions
|
@ -141,10 +141,10 @@ const ImportWalletDiscovery: React.FC = () => {
|
||||||
if (!isDesktop) keepAwake(false);
|
if (!isDesktop) keepAwake(false);
|
||||||
task.current?.stop();
|
task.current?.stop();
|
||||||
};
|
};
|
||||||
// ignoring "navigation" here, because it is constantly mutating
|
// ignoring "navigation" and "saveWallet" here, because it is constantly mutating
|
||||||
// removed all deps as they were leading to a rerender and retask loop
|
// removed all deps as they were leading to a rerender and retask loop
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, []);
|
}, [askPassphrase, importText, isElectrumDisabled, searchAccounts]);
|
||||||
|
|
||||||
const handleCustomDerivation = () => {
|
const handleCustomDerivation = () => {
|
||||||
task.current?.stop();
|
task.current?.stop();
|
||||||
|
|
Loading…
Add table
Reference in a new issue