Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Ansonhkg committed Jul 11, 2024
1 parent bb03270 commit 41daabb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions local-tests/tests/wrapped-keys/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@ export function getChainForNetwork(network: LIT_NETWORKS_KEYS): {
chainId: LIT_CHAINS['chronicleTestnet'].chainId,
};
case 'datil-dev':
return { chain: 'vesuvius', chainId: LIT_CHAINS['chronicleVesuviusTestnet'].chainId };
return {
chain: 'vesuvius',
chainId: LIT_CHAINS['chronicleVesuviusTestnet'].chainId,
};
case 'datil-test':
return { chain: 'vesuvius', chainId: LIT_CHAINS['chronicleVesuviusTestnet'].chainId };
return {
chain: 'vesuvius',
chainId: LIT_CHAINS['chronicleVesuviusTestnet'].chainId,
};
default:
throw new Error(`Cannot identify chain params for ${network}`);
}
Expand Down

0 comments on commit 41daabb

Please sign in to comment.