We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdfbfbe commit ade9485Copy full SHA for ade9485
src/MaglevEulerSwapFactory.sol
@@ -78,10 +78,10 @@ contract MaglevEulerSwapFactory is Ownable {
78
return allPools.length;
79
}
80
81
- /// @notice Get a slice of the registered pools array.
+ /// @notice Get a slice of the deployed pools array.
82
/// @param _start Start index of the slice.
83
/// @param _end End index of the slice.
84
- /// @return An array containing the slice of the registered pools.
+ /// @return An array containing the slice of the deployed pools.
85
function getAllPoolsListSlice(uint256 _start, uint256 _end) external view returns (address[] memory) {
86
uint256 length = allPools.length;
87
if (_end == type(uint256).max) _end = length;
0 commit comments