Remove more usage of `serial`.

This commit is contained in:
Sean Bowe 2016-07-14 19:19:13 -06:00
parent fd933ed05e
commit 28173cd0de
1 changed files with 2 additions and 2 deletions

View File

@ -47,9 +47,9 @@ public:
} }
} }
bool GetNullifier(const uint256 &serial) const bool GetNullifier(const uint256 &nf) const
{ {
std::map<uint256, bool>::const_iterator it = mapNullifiers_.find(serial); std::map<uint256, bool>::const_iterator it = mapNullifiers_.find(nf);
if (it == mapNullifiers_.end()) { if (it == mapNullifiers_.end()) {
return false; return false;