Forked from elenadimitrova/Organisation.sol calling Libraries
Created
March 15, 2017 09:13
-
-
Save cicorias/c20c450baebded8c8e844a6e53920d08 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
import "ProposalsLibrary.sol"; | |
contract Organisation | |
{ | |
using ProposalsLibrary for address; | |
address public eternalStorage; | |
function Organisation(address _eternalStorage) { | |
eternalStorage = _eternalStorage; | |
} | |
function addProposal(bytes32 _name) | |
{ | |
eternalStorage.addProposal(_name); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment