Skip to content

Commit

Permalink
Merge pull request #450 from axelarnetwork/hotfix/remove-kybeswap-ref…
Browse files Browse the repository at this point in the history
…erences-2

chore: fix build
  • Loading branch information
alanrsoares authored Nov 23, 2023
2 parents bae6b59 + 7467239 commit 1bda43e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/config/utils/reservedAddresses/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ import list1 from "./10202023";
import list2 from "./11232023";
import originalList from "./originalList";

const additionalList = [list1, list2].flatMap(toLower);

const normalized = [...originalList, ...additionalList];
const normalized = [
...originalList,
// additional reserved address lists
...list1,
...list2,
].map(toLower);

export default JSON.stringify(normalized);

1 comment on commit 1bda43e

@vercel
Copy link

@vercel vercel bot commented on 1bda43e Nov 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.