Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kumavis committed Dec 6, 2016
1 parent e87ec0f commit 9b9eaf5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test-ipld-eth-block.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ module.exports = (repo) => {
series([
(cb) => {
node1 = new EthBlockHeader({
number: 1,
number: 1
})

ipldEthBlock.util.cid(node1, (err, cid) => {
Expand All @@ -158,7 +158,7 @@ module.exports = (repo) => {
(cb) => {
node2 = new EthBlockHeader({
number: 2,
parentHash: node1.hash(),
parentHash: node1.hash()
})

ipldEthBlock.util.cid(node2, (err, cid) => {
Expand All @@ -170,7 +170,7 @@ module.exports = (repo) => {
(cb) => {
node3 = new EthBlockHeader({
number: 3,
parentHash: node2.hash(),
parentHash: node2.hash()
})

ipldEthBlock.util.cid(node3, (err, cid) => {
Expand Down

0 comments on commit 9b9eaf5

Please sign in to comment.