/contracts/pool-manager/src/helpers.rs#L462-L476
This func is expected to compare the address of the message sender with the contract admin; however, scanning through the whole repo we can see that this function is never used.
We can confirm the fact that this method is never used by running this search command.
QA, since the contract is using the cw-ownable crate for ownership management, which is a standard and well-tested solution in the CosmWasm ecosystem, it makes sense to stick with cw_ownable::assert_owner rather than using this custom assert_admin function.
Use the method or remove it.
