Skip to content

Commit 31126bd

Browse files
committed
fix: pools filter fixed
1 parent eb274a2 commit 31126bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/market/MarketConfiguratorLegacy.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ contract MarketConfiguratorLegacy is MarketConfigurator {
100100
address[] memory _v3pools = new address[](len);
101101
for (uint256 i; i < len; i++) {
102102
address p = _pools[i];
103-
if (IVersion(p).version() > 3_00) {
103+
if (IVersion(p).version() >= 3_00) {
104104
_v3pools[v3count] = p;
105105
v3count++;
106106
}

0 commit comments

Comments
 (0)