Created
April 10, 2018 03:36
-
-
Save ayinot/210f27e28e85f00c2f487ff4817da542 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 "./KeyValueStorage.sol"; | |
import './StorageConsumer.sol'; | |
import './Proxy.sol'; | |
contract StoreNumber is StorageConsumer, Proxy { | |
function StoreNumber(KeyValueStorage storage_) | |
public | |
StorageConsumer(storage_) | |
{ | |
storage_.setAddress("owner",msg.sender); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment