From e0ab61a783479cfb263c937c6840f88fee79094d Mon Sep 17 00:00:00 2001 From: Griff Green Date: Sun, 9 Jul 2017 12:02:45 -0500 Subject: [PATCH] added comments --- contracts/ILiquidPledging.sol | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contracts/ILiquidPledging.sol b/contracts/ILiquidPledging.sol index 87fe94e..1f5f477 100644 --- a/contracts/ILiquidPledging.sol +++ b/contracts/ILiquidPledging.sol @@ -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);