From 85e02c7f22aeac5ce31b02e703db358a046461bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20D=C3=ADaz?= Date: Fri, 31 May 2024 14:13:21 +0200 Subject: [PATCH] chore(libs): remove min collateral condition --- contracts/libs/WitnetV2.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/contracts/libs/WitnetV2.sol b/contracts/libs/WitnetV2.sol index 6d8cd7d1..f895eaa6 100644 --- a/contracts/libs/WitnetV2.sol +++ b/contracts/libs/WitnetV2.sol @@ -72,8 +72,6 @@ library WitnetV2 { return ( sla.witnessingFeeNanoWit > 0 && sla.committeeSize > 0 && sla.committeeSize <= 127 - // v1.7.x requires witnessing collateral to be greater or equal to 20 WIT: - && sla.witnessingFeeNanoWit * 100 >= 20 * 10 ** 9 ); }