script: Replace address-of idiom with vector data() method

pull/826/head
Guido Vranken 4 years ago committed by MarcoFalke
parent e2d4e67a8f
commit fabb6dfe6e
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

@ -53,7 +53,7 @@ public:
ComputeEntryECDSA(uint256& entry, const uint256 &hash, const std::vector<unsigned char>& vchSig, const CPubKey& pubkey) const
{
CSHA256 hasher = m_salted_hasher_ecdsa;
hasher.Write(hash.begin(), 32).Write(&pubkey[0], pubkey.size()).Write(&vchSig[0], vchSig.size()).Finalize(entry.begin());
hasher.Write(hash.begin(), 32).Write(&pubkey[0], pubkey.size()).Write(vchSig.data(), vchSig.size()).Finalize(entry.begin());
}
void

Loading…
Cancel
Save