Skip to content

Commit

Permalink
update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mholtzman committed Feb 14, 2023
1 parent a06a2af commit a370345
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/api/http.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import http, { IncomingMessage, ServerResponse } from 'http'
import log from 'electron-log'
import { isHexString } from '@ethereumjs/util'

import provider from '../provider'
import accounts from '../accounts'
Expand All @@ -8,7 +9,6 @@ import store from '../store'
import { updateOrigin, isTrusted, parseOrigin } from './origins'
import validPayload from './validPayload'
import protectedMethods from './protectedMethods'
import { isHexString } from '@ethereumjs/util'

const logTraffic = process.env.LOG_TRAFFIC

Expand Down
2 changes: 1 addition & 1 deletion main/api/ws.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import WebSocket from 'ws'
import { v4 as uuid } from 'uuid'
import log from 'electron-log'
import { isHexString } from '@ethereumjs/util'

import store from '../store'
import provider from '../provider'
Expand All @@ -18,7 +19,6 @@ import {
import validPayload from './validPayload'
import protectedMethods from './protectedMethods'
import { IncomingMessage, Server } from 'http'
import { isHexString } from '@ethereumjs/util'

const logTraffic = process.env.LOG_TRAFFIC

Expand Down

0 comments on commit a370345

Please sign in to comment.