Remove creating init node

This commit is contained in:
benthecarman
2023-07-03 13:51:27 -05:00
committed by Paul Miller
parent e3f6439628
commit f858c2c856

View File

@@ -138,13 +138,6 @@ export async function setupMutinyWallet(
undefined
);
const nodes = await mutinyWallet.list_nodes();
// If we don't have any nodes yet, create one
if (!nodes.length) {
await mutinyWallet?.new_node();
}
sessionStorage.setItem("MUTINY_WALLET_INITIALIZED", Date.now().toString());
return mutinyWallet;