Implement withdraw_fees() in contracts/treasury/src/lib.rs.
What to implement:
- admin.require_auth() as first call
- Verify amount <= BALANCE, panic otherwise
- Deduct amount from BALANCE, transfer XLM to recipient
- Append (recipient, amount, timestamp) to WITHDRAWAL_LOG
- Emit FeesWithdrawn event
Acceptance Criteria:
Implement withdraw_fees() in contracts/treasury/src/lib.rs.
What to implement:
Acceptance Criteria: