diff --git a/src/types/DataTypes.sol b/src/types/DataTypes.sol index 48a899c75..8ea369cb0 100644 --- a/src/types/DataTypes.sol +++ b/src/types/DataTypes.sol @@ -54,17 +54,17 @@ library Lockup { } /// @notice Enum representing the different statuses of a stream. - /// @custom:value PENDING Stream created but not started; assets are in a pending state. - /// @custom:value STREAMING Active stream where assets are currently being streamed. - /// @custom:value SETTLED All assets have been streamed; recipient is due to withdraw them. - /// @custom:value CANCELED Canceled stream; remaining assets await recipient's withdrawal. - /// @custom:value DEPLETED Depleted stream; all assets have been withdrawn and/or refunded. + /// @custom:value0 PENDING Stream created but not started; assets are in a pending state. + /// @custom:value1 STREAMING Active stream where assets are currently being streamed. + /// @custom:value2 SETTLED All assets have been streamed; recipient is due to withdraw them. + /// @custom:value3 CANCELED Canceled stream; remaining assets await recipient's withdrawal. + /// @custom:value4 DEPLETED Depleted stream; all assets have been withdrawn and/or refunded. enum Status { - PENDING, // value 0 - STREAMING, // value 1 - SETTLED, // value 2 - CANCELED, // value 3 - DEPLETED // value 4 + PENDING, + STREAMING, + SETTLED, + CANCELED, + DEPLETED } }