Skip to content

Commit

Permalink
fix: pools filter fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmikko committed Sep 2, 2024
1 parent eb274a2 commit 31126bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/market/MarketConfiguratorLegacy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ contract MarketConfiguratorLegacy is MarketConfigurator {
address[] memory _v3pools = new address[](len);
for (uint256 i; i < len; i++) {
address p = _pools[i];
if (IVersion(p).version() > 3_00) {
if (IVersion(p).version() >= 3_00) {
_v3pools[v3count] = p;
v3count++;
}
Expand Down

0 comments on commit 31126bd

Please sign in to comment.