Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules
build
abi
.test/
coverage
coverage.json
Expand Down
2 changes: 1 addition & 1 deletion contracts/Crowdfund.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ contract Crowdfund is NonZero, CanReclaimToken {
/////////////////////// VARIABLE INITIALIZATION ///////////////////////

// Basic version #. Change every time a release happens.
uint256 public version = 2;
uint256 public version = 3;
// Amount of tokens sold during the crowdfund
uint256 public tokensSold = 0;
// Amount of wei currently raised
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
"babel-register": "^6.26.0",
"bignumber.js": "6.0.0",
"chai": "^4.0.2",
"chai-bignumber": "^2.0.0",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"ganache-cli": "^6.1.4",
"solc": "^0.5.1",
"truffle": "^4.1.14",
"zeppelin-solidity": "1.6.0"
},
Expand Down