Skip to content

Commit

Permalink
fix: fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Jul 23, 2024
1 parent aaa833a commit 29f3fcc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ module.exports.shouldStoreAndRetrieveKeys = ctx => {
});

test('Add two contracts to account and retrieve them', async () => {
const networkId = "network"
const accountId = "account"
const contract1 = "contract1"
const contract2 = "contract2"
const networkId = 'network';
const accountId = 'account';
const contract1 = 'contract1';
const contract2 = 'contract2';
const key1Expected = KeyPairEd25519.fromRandom();
const key2Expected = KeyPairEd25519.fromRandom();
await ctx.keyStore.setKey(networkId, accountId, key1Expected, contract1);
Expand Down
2 changes: 1 addition & 1 deletion packages/keystores/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { InMemoryKeyStore } from './in_memory_key_store';
export { KeyStore } from './keystore';
export { MergeKeyStore } from './merge_key_store';
export { MultiContractKeyStore } from './multi_contract_keystore'
export { MultiContractKeyStore } from './multi_contract_keystore';

0 comments on commit 29f3fcc

Please sign in to comment.