Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jurevans committed Jul 10, 2023
1 parent dac9041 commit 2946257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/extension/src/provider/Anoma.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe("Anoma", () => {
iDBStore.set(KEYSTORE_KEY, keyStore);
utilityStore.set(PARENT_ACCOUNT_ID_KEY, ACTIVE_ACCOUNT);
const storedKeyStore = keyStore.map(
({ crypto: _crypto, owner: _owner, ...account }) => account
({ crypto: _crypto, ...account }) => account
);
const storedAccounts = await anoma.accounts(chain.chainId);

Expand Down

0 comments on commit 2946257

Please sign in to comment.