Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

Update to ethereumjs-common v1.1.0 #86

Merged
merged 2 commits into from
Feb 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Stoplight = require('flow-stoplight')
const semaphore = require('semaphore')
const level = require('level-mem')
const Block = require('ethereumjs-block')
const Common = require('ethereumjs-common')
const Common = require('ethereumjs-common').default
const ethUtil = require('ethereumjs-util')
const Ethash = require('ethashjs')
const Buffer = require('safe-buffer').Buffer
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"dependencies": {
"async": "^2.6.1",
"ethashjs": "~0.0.7",
"ethereumjs-block": "~2.1.0",
"ethereumjs-common": "~0.6.0",
"ethereumjs-block": "~2.2.0",
"ethereumjs-common": "^1.1.0",
"ethereumjs-util": "~6.0.0",
"flow-stoplight": "^1.0.0",
"level-mem": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const test = require('tape')
const Blockchain = require('..')
const Block = require('ethereumjs-block')
const Common = require('ethereumjs-common')
const Common = require('ethereumjs-common').default
const async = require('async')
const ethUtil = require('ethereumjs-util')
const level = require('level-mem')
Expand Down