Skip to content

Instantly share code, notes, and snippets.

@ayinot
Created April 10, 2018 03:43
Show Gist options
  • Save ayinot/c077bb278637bfc63ca3aeeea4f0d41f to your computer and use it in GitHub Desktop.
Save ayinot/c077bb278637bfc63ca3aeeea4f0d41f to your computer and use it in GitHub Desktop.
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