The function melt in RToken.sol is supposed to be called only by Furnace.sol, but as how it is right now the function can be called by anyone. This is problematic considering that this function burns tokens, if a user calls it by mistake. His tokens will be lost and he wont be able to get them back.
Consider applying a require statement in the function melt that the msg.sender is the furnance contract:
