Created
April 10, 2018 03:43
-
-
Save ayinot/c077bb278637bfc63ca3aeeea4f0d41f 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 NumberLogicV1 is StorageStateful{ | |
function setNumber(uint _number) public { | |
_storage.setUint("MyNumber", 20*_number); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment