Skip to content

Commit

Permalink
Fix incomplete imports (#2871)
Browse files Browse the repository at this point in the history
  • Loading branch information
acolytec3 committed Jul 10, 2023
1 parent 31aa264 commit 0747b4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/common/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
intToBytes,
toType,
} from '@ethereumjs/util'
import crc from 'crc/crc32'
import { crc32 as crc } from 'crc'
import { EventEmitter } from 'events'

import * as goerli from './chains/goerli.json'
Expand Down
2 changes: 1 addition & 1 deletion packages/util/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { secp256k1 } from 'ethereum-cryptography/secp256k1.js'

import { hexToBytes } from './bytes'
import { hexToBytes } from './bytes.js'

/**
* 2^64-1
Expand Down
2 changes: 1 addition & 1 deletion packages/util/src/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE
*/

import { bytesToHex, utf8ToBytes } from './bytes'
import { bytesToHex, utf8ToBytes } from './bytes.js'

/**
* Returns a `Boolean` on whether or not the a `String` starts with '0x'
Expand Down

0 comments on commit 0747b4c

Please sign in to comment.