Remove more usage of serial.

This commit is contained in:
Sean Bowe
2016-07-14 19:19:13 -06:00
parent fd933ed05e
commit 28173cd0de

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()) {
return false;