Pass by ref

This commit is contained in:
JoelKatz
2012-05-28 04:28:48 -07:00
parent dc79749d15
commit 735259b2eb

View File

@@ -281,7 +281,7 @@ public:
return Verify(hash, &vchSig[0], vchSig.size());
}
bool Verify(const uint256& hash, const std::string sig) const
bool Verify(const uint256& hash, const std::string& sig) const
{
return Verify(hash, sig.data(), sig.size());
}