Skip to content

Instantly share code, notes, and snippets.

@kyriediculous
Created December 5, 2018 16:27
Show Gist options
  • Save kyriediculous/32928dc29eb63b9b9003f59038ca0b8e to your computer and use it in GitHub Desktop.
Save kyriediculous/32928dc29eb63b9b9003f59038ca0b8e to your computer and use it in GitHub Desktop.
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