Skip to content

Commit

Permalink
[VM] tests: add frontier alias
Browse files Browse the repository at this point in the history
  • Loading branch information
jochem-brouwer committed Jul 31, 2020
1 parent 971ee02 commit e9b70f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/vm/tests/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ const SKIP_VM = [
* @returns {String} Either an alias of the forkConfig param, or the forkConfig param itself
*/
function getRequiredForkConfigAlias(forkConfig) {
// Chainstart is also called Frontier and is called as such in the tests
if (String(forkConfig).match(/^chainstart$/i)) {
return 'Frontier'
}
// TangerineWhistle is named EIP150 (attention: misleading name)
// in the client-independent consensus test suite
if (String(forkConfig).match(/^tangerineWhistle$/i)) {
Expand Down

0 comments on commit e9b70f1

Please sign in to comment.