Created
August 9, 2019 20:23
-
-
Save bjoveski/c42b34f52522482dc11b92d7643c26cc 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
import "./Forwarder.sol"; | |
contract ForwarderFactory { | |
function initForwarder(address destination) public returns (Forwarder forwarder) { | |
forwarder = Forwarder.new(destination); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
should this be?