fix: reference contract name rather than filepath (#698)

This commit is contained in:
Matt Condon
2018-01-25 06:52:51 -08:00
committed by Francisco Giordano
parent a5d5867092
commit f4228f1b49
39 changed files with 49 additions and 51 deletions

View File

@ -6,8 +6,8 @@ let sendReward = function (sender, receiver, value) {
value: value,
});
};
var SecureTargetBounty = artifacts.require('mocks/SecureTargetBounty.sol');
var InsecureTargetBounty = artifacts.require('mocks/InsecureTargetBounty.sol');
var SecureTargetBounty = artifacts.require('SecureTargetBounty');
var InsecureTargetBounty = artifacts.require('InsecureTargetBounty');
function awaitEvent (event, handler) {
return new Promise((resolve, reject) => {