From e62014b2ce716161d12bcf708e120a75d57adaed Mon Sep 17 00:00:00 2001 From: AndreyShashlov Date: Mon, 17 May 2021 13:27:07 +0300 Subject: [PATCH] ignore validation of min weight. --- contracts/BPool.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/BPool.sol b/contracts/BPool.sol index b1d2d734..9cfaa875 100644 --- a/contracts/BPool.sol +++ b/contracts/BPool.sol @@ -269,7 +269,6 @@ contract BPool is BBronze, BToken, BMath { require(_records[token].bound, "ERR_NOT_BOUND"); require(!_finalized, "ERR_IS_FINALIZED"); - require(denorm >= MIN_WEIGHT, "ERR_MIN_WEIGHT"); require(denorm <= MAX_WEIGHT, "ERR_MAX_WEIGHT"); require(balance >= MIN_BALANCE, "ERR_MIN_BALANCE");