From 2bbd5f418c1e777d7010fc83417acac4a406635e Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 9 Feb 2016 15:36:56 -0500 Subject: [PATCH] comment out stub contract --- test/support/contracts/crowdsale.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/support/contracts/crowdsale.sol b/test/support/contracts/crowdsale.sol index a882dc81..dac324ff 100644 --- a/test/support/contracts/crowdsale.sol +++ b/test/support/contracts/crowdsale.sol @@ -1,4 +1,4 @@ -contract token { mapping (address => uint) public coinBalanceOf; function token() {} function sendCoin(address receiver, uint amount) returns(bool sufficient) { } } +//contract token { mapping (address => uint) public coinBalanceOf; function token() {} function sendCoin(address receiver, uint amount) returns(bool sufficient) { } } contract Crowdsale {