return plugin in getNoteManager

This commit is contained in:
perissology 2017-09-26 12:06:45 -07:00
parent 1f0c5fd987
commit aca20feb53
1 changed files with 3 additions and 1 deletions

View File

@ -232,7 +232,8 @@ contract LiquidPledgingBase {
string name,
uint64 commitTime,
uint64 parentProject,
bool canceled)
bool canceled,
address plugin)
{
NoteManager storage m = findManager(idManager);
managerType = m.managerType;
@ -241,6 +242,7 @@ contract LiquidPledgingBase {
commitTime = m.commitTime;
parentProject = m.parentProject;
canceled = m.canceled;
plugin = m.plugin;
}
////////