Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-abrioux committed Jul 4, 2022
1 parent 70ad147 commit a6a5acf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ethereum-storage/src/ipfs-storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ export class IpfsStorage implements StorageTypes.IIpfsStorage {

static hasRequiredBootstrapNodes(actualList: string[]): boolean {
const expectedList = getIpfsExpectedBootstrapNodes();
return expectedList.every((nodeExpected) =>
actualList.some((actual) => nodeExpected.test(actual))
)
return expectedList.every((nodeExpected) =>
actualList.some((actual) => nodeExpected.test(actual)),
);
}
}

0 comments on commit a6a5acf

Please sign in to comment.