Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Rukhavets authored and Ivan Rukhavets committed Jul 20, 2017
1 parent c36539f commit 228f18d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 19 deletions.
2 changes: 1 addition & 1 deletion lib/Market.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class Market {
}
}

module.exports = Market;
module.exports = Market;
2 changes: 1 addition & 1 deletion lib/OfferFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ class OfferFactory {

}

module.exports = OfferFactory;
module.exports = OfferFactory;
10 changes: 1 addition & 9 deletions migrations/2_deploy_contracts.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
// var DeliveryContract = artifacts.require("./DeliveryContract.sol");
// var Amber = artifacts.require("./Amber.sol");
// var Contribution = artifacts.require("./Contribution.sol");
var Market = artifacts.require('./protocol/Market/Market.sol')

module.exports = function(deployer) {
/*deployer.deploy(Contribution);
deployer.deploy(Amber).then(function() {
return deployer.deploy(DeliveryContract, "The Name", "The Code", Amber.address);
});*/
//deployer.deploy(Market);

};
6 changes: 2 additions & 4 deletions storage-test/ipfs_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ describe('IPFSMap', function() {
assert.deepEqual(links.map((l)=>l.multihash).sort(), [hash1,hash2].sort());

ipfs.stop(done);
});

});
});

});
});
5 changes: 2 additions & 3 deletions storage-test/measurements_storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ describe('MeasurementsStorage', function() {
assert.deepEqual(measurements.sort(), expected);

ipfs.stop(done);
});

});
});
});
});
1 change: 0 additions & 1 deletion truffle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
//gas: 1000000
}
},
};

0 comments on commit 228f18d

Please sign in to comment.