1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00
This commit is contained in:
alexcos20 2020-09-10 06:47:19 -07:00
parent dafbb1a6ce
commit d6053d5dbb

View File

@ -350,7 +350,7 @@ export class OceanFixedRateExchange {
if (constituents.active === true && constituents.dataToken === dataTokenAddress) {
const supply = new BigNumber(await this.getSupply(constituents.exchangeID))
const required = new BigNumber(minSupply)
if (supply.gte(required)){
if (supply.gte(required)) {
result.push(constituents)
}
}