We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb274a2 commit 31126bdCopy full SHA for 31126bd
contracts/market/MarketConfiguratorLegacy.sol
@@ -100,7 +100,7 @@ contract MarketConfiguratorLegacy is MarketConfigurator {
100
address[] memory _v3pools = new address[](len);
101
for (uint256 i; i < len; i++) {
102
address p = _pools[i];
103
- if (IVersion(p).version() > 3_00) {
+ if (IVersion(p).version() >= 3_00) {
104
_v3pools[v3count] = p;
105
v3count++;
106
}
0 commit comments