Created
April 10, 2018 03:44
-
-
Save ayinot/d219c587a526887b4f847bc0a31d2dda 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
| pragma solidity ^0.4.0; | |
| import "./StorageStateful.sol"; | |
| contract NumberLogicV2 is StorageStateful{ | |
| function getNumber()public returns(uint){ | |
| return _storage.getUint("MyNumber"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment