Background
Smart Contracts have a concept called addresses. This allows the Smart Contract writer to separate the money in a customers account into two distinct places. This can be used in many ways, but it is very useful for Smart Contracts that accrue interest. Since interest accrual often happens at a different schedule to interest application, often Smart Contract writers will put accrued interest into a separate address.
Exercise
In this exercise, complete the below function _accrue_interest. This function should instruct the transfer of the accrual amount from the internal pnl_account address ACCRUED_OUTGOING to the ACCRUED_INCOMING address of our account.