Forked from elenadimitrova/Organistion.sol calling interface
Created
March 15, 2017 09:14
-
-
Save cicorias/e558ad4876cc6e4de4cf84e3727b018b 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 "ITokenLedger.sol"; | |
contract Organisation | |
{ | |
ITokenLedger public tokenLedger; | |
function Organisation(address _tokenLedger) { | |
tokenLedger = ITokenLedger(_tokenLedger); | |
} | |
function setTokenLedgerAddress(address _tokenLedger) | |
{ | |
tokenLedger = ITokenLedger(_tokenLedger); | |
} | |
function generateTokens(uint256 _amount) | |
{ | |
tokenLedger.generateTokens(_amount); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment