Currently deploying Proxy contract using the following code:
const Foo = await ethers.getContractFactory("Foo");
const foo = await upgrades.deployProxy(
Foo,
[1],
{ initializer: "initialize" }
);
This warning message is appearing in all my tests:
Warning: A proxy admin was previously deployed on this network
This is not natively used with the current kind of proxy ('uups').
Changes to the admin will have no effect on this new proxy.
Is this cause of concern or can I simply ignore?
Environment
Hardhat / Openzeppelin