The Mint function handles minting operations and is located within a msgServer structure. Its primary purpose is to mint new tokens based on user requests.
In the Mint event, it incorrectly records the senders address instead of the target address where the tokens are minted.
In the Mint event, change the event attribute from msg.Sender to msg.MintToAddress to ensure that the target address for token minting is recorded instead of the senders address.
