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 2d9ce78 commit 29ee31aCopy full SHA for 29ee31a
spot-contracts/contracts/BondIssuer.sol
@@ -190,8 +190,7 @@ contract BondIssuer is IBondIssuer, OwnableUpgradeable {
190
191
/// @inheritdoc IBondIssuer
192
/// @dev Internally, we first iterate through the active list and then move on to the mature list.
193
- /// [0, activeBonds.len) is NOT guaranteed to be ordered,
194
- /// [activeBonds.len, numBonds) will be ordered by increasing maturity date.
+ /// This list is NOT guaranteed to be ordered.
195
function issuedBondAt(uint256 index) external view override returns (IBondController) {
196
uint256 activeCount_ = _activeBonds.length();
197
if (index < activeCount_) {
0 commit comments