Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wantedsystem committed Mar 7, 2025
1 parent fe87087 commit 01ac8da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/scripts/metamask-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@ export default class MetamaskController extends EventEmitter {

Object.values(networks).forEach((network) => {
const id = network.rpcEndpoints[0].networkClientId;
if (id !== 'megaeth-testnet') { // Skip for our custom network
if (id !== 'megaeth-testnet') {
// Skip for our custom network
network.blockExplorerUrls = [BlockExplorerUrl[id]];
}
network.defaultBlockExplorerUrlIndex = 0;
Expand Down

0 comments on commit 01ac8da

Please sign in to comment.