Removed redundant virtual in IVariableDebtToken

This commit is contained in:
The3D 2020-08-20 16:04:03 +02:00
parent 7c3d5e0239
commit fa32406b48

View File

@ -26,5 +26,5 @@ interface IVariableDebtToken {
* @dev returns the last index of the user * @dev returns the last index of the user
* @return the index of the user * @return the index of the user
**/ **/
function getUserIndex(address _user) external virtual view returns (uint256); function getUserIndex(address _user) external view returns (uint256);
} }