mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
Do not shadow variables
This commit is contained in:
@@ -88,9 +88,9 @@ public:
|
||||
}
|
||||
|
||||
//! Construct a public key from a byte vector.
|
||||
CPubKey(const std::vector<unsigned char>& vch)
|
||||
CPubKey(const std::vector<unsigned char>& _vch)
|
||||
{
|
||||
Set(vch.begin(), vch.end());
|
||||
Set(_vch.begin(), _vch.end());
|
||||
}
|
||||
|
||||
//! Simple read-only vector-like interface to the pubkey data.
|
||||
|
||||
Reference in New Issue
Block a user