From e9b70f125143cfdd3f891264e259f609ad589cbf Mon Sep 17 00:00:00 2001 From: Jochem Brouwer Date: Fri, 31 Jul 2020 16:48:58 +0200 Subject: [PATCH] [VM] tests: add frontier alias --- packages/vm/tests/config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/vm/tests/config.js b/packages/vm/tests/config.js index c752750a0e..88f142f81e 100644 --- a/packages/vm/tests/config.js +++ b/packages/vm/tests/config.js @@ -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)) {