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

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
Removing semi-colon
  • Loading branch information
micahriggan authored Mar 26, 2019
1 parent 1964ba4 commit 4baf287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ var Block = module.exports = function (data, opts) {
const height = new BN(this.header.number).toNumber()
for (i = 0; i < rawTransactions.length; i++) {
var tx = new Tx(rawTransactions[i])
tx._homestead = height >= 1150000;
tx._homestead = height >= 1150000
this.transactions.push(tx)
}
}
Expand Down

0 comments on commit 4baf287

Please sign in to comment.