Created
December 5, 2018 16:27
-
-
Save kyriediculous/32928dc29eb63b9b9003f59038ca0b8e to your computer and use it in GitHub Desktop.
This file contains 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 DummyMaster { | |
// resolver needs to be the first in storage to match the Proxy contract storage ordering | |
address impl; | |
uint count; | |
function increment() public { | |
count = count + 1; | |
} | |
function get() external view returns (uint) { | |
return count; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment