The V2Migrator contract, on line 4, imports the SafeERC20 library from OpenZeppelin but does not use it. According to a comment on line 29, every pool in V1 that wants to migrate to V2 should be able to do so with the migrate function. In the same comment, they refer to USDC, which, for example, does not follow the ERC20 standard, and many other tokens dont either. You guys should implement the SafeERC20 library from OZ in this contract.
Implement the SafeERC20 library from OpenZepplin in the V2Migrator.sol contract.
