From 345acb147067a798c4a9a261cb4733f95194e4d7 Mon Sep 17 00:00:00 2001 From: jeremy-then Date: Tue, 14 Jan 2025 14:27:12 -0400 Subject: [PATCH] Disable lovell --- test.js | 5 ++++- tests/01_08_50-activate-lovell700.js | 6 ------ 2 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 tests/01_08_50-activate-lovell700.js diff --git a/test.js b/test.js index 46cfe325..79bf53b2 100644 --- a/test.js +++ b/test.js @@ -60,6 +60,9 @@ const createForkObject = (name, activationHeight) => { if(isActive) { return isActive; } + if(this.activationHeight === -1) { + return false; + } rskTxHelper = rskTxHelper || getRskTransactionHelper(); // Cache the result to avoid calling the network again if the fork is already active const latestBlockNumber = await rskTxHelper.getBlockNumber(); @@ -88,7 +91,7 @@ global.Runners = { hop401: createForkObject('hop401', 1010), fingerroot500: createForkObject('fingerroot', 1350), arrowhead600: createForkObject('arrowhead', 1600), - lovell700: createForkObject('lovell', 1700) + lovell700: createForkObject('lovell', -1) }, additionalFederationAddresses: [] } diff --git a/tests/01_08_50-activate-lovell700.js b/tests/01_08_50-activate-lovell700.js deleted file mode 100644 index 389e9412..00000000 --- a/tests/01_08_50-activate-lovell700.js +++ /dev/null @@ -1,6 +0,0 @@ -const activateForkTest = require('../lib/tests/activate-fork'); - -activateForkTest.execute( - Runners.common.forks.lovell700, - () => Runners.hosts.federates -);