Skip to content

Commit

Permalink
Merge pull request #5249
Browse files Browse the repository at this point in the history
38c62ae Adding const. (sinetek)
  • Loading branch information
sipa committed Nov 10, 2014
2 parents 7b7c866 + 38c62ae commit 5406f61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coincontrol.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ class CCoinControl
return (setSelected.count(outpt) > 0);
}

void Select(COutPoint& output)
void Select(const COutPoint& output)
{
setSelected.insert(output);
}

void UnSelect(COutPoint& output)
void UnSelect(const COutPoint& output)
{
setSelected.erase(output);
}
Expand Down

0 comments on commit 5406f61

Please sign in to comment.