Last active
March 26, 2018 23:39
-
-
Save cag/903be3f21dac54c4c11b1cda3ad7d324 to your computer and use it in GitHub Desktop.
This file contains 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.21; | |
import "./Kombucha.sol"; | |
contract KombuchaFactory { | |
function createKombucha(string flavor, uint fillAmount, uint capacity) | |
public | |
returns (Kombucha) | |
{ | |
return new Kombucha(flavor, fillAmount, capacity); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment