You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 6, 2020. It is now read-only.
For me I changed index.js to only turn homestead on for blocks that happened after the fork
// parse transactions
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;
this.transactions.push(tx)
}
As an aside, current version of ethereumjs-tx appear to use ethereumjs-common to try to determine hardfork settings.