Created
April 10, 2018 03:40
-
-
Save ayinot/0bfeb7fd8a21fb6ecf24a23fe42eb867 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.18; | |
import "./KeyValueStorage.sol"; | |
import "./StorageStateful.sol"; | |
import "./KeyValueStorage.sol"; | |
contract StorageConsumer is StorageStateful { | |
function StorageConsumer(KeyValueStorage storage_) public { | |
_storage = storage_; | |
} | |
} | |
contract StorageStateful { | |
KeyValueStorage _storage; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment