Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added usage of sealEngine to blockchain tests #373

Merged
merged 1 commit into from
Oct 23, 2018
Merged
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
13 changes: 11 additions & 2 deletions tests/BlockchainTestsRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,20 @@ module.exports = function runBlockchainTest (options, testData, t, cb) {
db: require('memdown')
})
var state = new Trie()
var validate = false
// Only run with block validation when sealEngine present in test file
// and being set to Ethash PoW validation
if (testData.sealEngine && testData.sealEngine === 'Ethash') {
validate = true
}
var blockchain = new Blockchain({
db: blockchainDB,
hardfork: options.forkConfig.toLowerCase()
hardfork: options.forkConfig.toLowerCase(),
validate: validate
})
blockchain.ethash.cacheDB = cacheDB
if (validate) {
blockchain.ethash.cacheDB = cacheDB
}
var VM
if (options.dist) {
VM = require('../dist/index.js')
Expand Down