Skip to content

Commit

Permalink
fix(aeternity): share wallet info with dapp
Browse files Browse the repository at this point in the history
  • Loading branch information
CedrikNikita committed Dec 9, 2024
1 parent ef41173 commit 64d19bb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/composables/aeSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export function useAeSdk() {
} = useNetworks();
const {
accountsAddressList,
isLoggedIn,
getLastActiveProtocolAccount,
onAccountChange,
} = useAccounts();
Expand Down Expand Up @@ -130,10 +129,7 @@ export function useAeSdk() {
async function initAeSdk() {
isAeSdkUpdating.value = true;

await Promise.all([
watchUntilTruthy(isLoggedIn),
watchUntilTruthy(areNetworksRestored),
]);
await watchUntilTruthy(areNetworksRestored);

const nodeInstance = await createNodeInstance(aeActiveNetworkSettings.value.nodeUrl);

Expand Down

0 comments on commit 64d19bb

Please sign in to comment.