Discrepancy between interface and implementation
The TroveManager contract has a few discrepancies between its interface and implementation.
The interface
ITroveManager.sol
declares an external function calledupdateStakeAndTotalStakes
, which is not found in the corresponding implementation (i.e., TroveManager.sol).The implementation contract TroveManager.sol contains an external function
claimableReward
, which is not found in the corresponding interface (i.e.,ITroveManager.sol
).