Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test cov #41

Merged
merged 11 commits into from
May 7, 2018
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DS_Store
secrets.json
/node_modules/
node_modules/
coverage.json
/coverage/
coverage/
build/
3 changes: 3 additions & 0 deletions .solcover.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
skipFiles: ['inherited/']
};
339 changes: 246 additions & 93 deletions contracts/StandardBounty.sol

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/inherited/Proxy.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.4.19;
pragma solidity ^0.4.19;


/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
Expand Down
Loading