added comments

This commit is contained in:
Griff Green 2017-07-09 12:02:45 -05:00 committed by GitHub
parent 849f9e5c96
commit e0ab61a783
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@ pragma solidity ^0.4.11;
contract ILiquidPledging {
enum NoteManagerType { Donor, Delegate, Project }
// TODO: make this enum its own contract... or at least make it so that an owner
// can add a new NoteManagerType
enum NoteManagerType { Donor, Delegate, Project}
enum PaymentState {NotPaid, Paying, Paid}
function numberOfNotes() constant returns (uint);