Skip to content

Commit

Permalink
fix: linting and typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bvotteler committed Jul 4, 2024
1 parent c4d3a25 commit f2c0ed9
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/adapters/phala.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@ export const phalaRoutersConfig: Omit<CrossChainRouterConfigs, "from">[] = [
},
];

export const phalaTokensConfig: Record<
string,
Record<string, TokenData>
> = {
export const phalaTokensConfig: Record<string, Record<string, TokenData>> = {
phala: {
PHA: {
name: "PHA",
Expand Down Expand Up @@ -272,10 +269,6 @@ class BasePhalaAdapter extends BaseCrossChainAdapter {

export class PhalaAdapter extends BasePhalaAdapter {
constructor() {
super(
chains.phala,
phalaRoutersConfig,
phalaTokensConfig.parallel
);
super(chains.phala, phalaRoutersConfig, phalaTokensConfig.phala);
}
}

0 comments on commit f2c0ed9

Please sign in to comment.