Submitted by rayn, also found by 0x1f8b, cmichel, and Sleepy
CToken.sol#L1379
The implementation of CToken in Duality introduced an _acceptAdmin function, which presumably should allow changing the admin. However, there does not exist a pairing proposePendingAdmin function that can propose a new pendingAdmin, thus pendingAdmin will never be set. This renders the _acceptAdmin function useless.
_acceptAdmin requires msg.sender to equal pendingAdmin, however, since pendingAdmin can never be set, it will always be address(0), making this function unusable.
vim, ganache-cli
Add a proposePendingAdmin function where the current admin can propose successors.
0xdramaone (Duality Focus) confirmed and commented:
0xdramaone (Duality Focus) resolved
