Commit 34fdb0fe by Facundo Spagnuolo Committed by Santiago Palladino

Fix split payment contract variable initialization (#37)

* Remove variables initialization on declaration for SplitPayment contracts
parent 793de306
......@@ -12,8 +12,8 @@ import "../math/SafeMath.sol";
contract SplitPayment is Initializable {
using SafeMath for uint256;
uint256 private _totalShares = 0;
uint256 private _totalReleased = 0;
uint256 private _totalShares;
uint256 private _totalReleased;
mapping(address => uint256) private _shares;
mapping(address => uint256) private _released;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment