From 0be9cc1126f656f80058f71d4f09073bad51e8e4 Mon Sep 17 00:00:00 2001 From: Sowmay Jain Date: Mon, 14 Sep 2020 03:08:14 +1000 Subject: [PATCH] deployLogic() => deployFlusher() --- contracts/deployer.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/deployer.sol b/contracts/deployer.sol index 480cee9..a72d99d 100644 --- a/contracts/deployer.sol +++ b/contracts/deployer.sol @@ -90,7 +90,7 @@ contract InstaDeployer is Controller { mapping (address => address) public flushers; // deploy create2 + minimal proxy - function deployLogic(address owner, address logic) public returns (address proxy) { + function deployFlusher(address owner, address logic) public returns (address proxy) { require(!(isFlusherDeployed(getAddress(owner, logic))), "flusher-already-deployed"); bytes32 salt = keccak256(abi.encodePacked(owner, logic)); bytes20 targetBytes = bytes20(logic);