Created
March 7, 2022 20:59
-
-
Save ilamanov/39e65e4fd0cae5e22acee9325a341d5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| contract KittyCore is KittyMinting { | |
| address public newContractAddress; | |
| function setNewAddress(address _v2Address) external onlyCEO whenPaused { | |
| newContractAddress = _v2Address; | |
| ContractUpgrade(_v2Address); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment