Swap target contract at test by using abstract interface

This commit is contained in:
Makoto Inoue
2016-10-22 18:16:42 +01:00
parent 9345436957
commit 986509934b
5 changed files with 35 additions and 9 deletions

View File

@ -5,4 +5,6 @@ module.exports = function(deployer) {
deployer.deploy(Bounty);
deployer.deploy(Ownable);
deployer.deploy(LimitFunds);
deployer.deploy(SecureTargetMock);
deployer.deploy(InsecureTargetMock);
};