Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cicorias/e558ad4876cc6e4de4cf84e3727b018b to your computer and use it in GitHub Desktop.
Save cicorias/e558ad4876cc6e4de4cf84e3727b018b to your computer and use it in GitHub Desktop.
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