diff options
| author | Pavel Janík <[email protected]> | 2016-09-02 18:19:01 +0200 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2016-09-27 09:25:15 +0200 |
| commit | 4731cab8fbff51a8178c85d572e2482040278616 (patch) | |
| tree | 09ba06a320b4876f9318a5b9ff086e5cae9c48fe /src/pubkey.h | |
| parent | Merge #8805: Trivial: Grammar and capitalization (diff) | |
| download | discoin-4731cab8fbff51a8178c85d572e2482040278616.tar.xz discoin-4731cab8fbff51a8178c85d572e2482040278616.zip | |
Do not shadow variables
Diffstat (limited to 'src/pubkey.h')
| -rw-r--r-- | src/pubkey.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey.h b/src/pubkey.h index aebfdbc82..3a554877f 100644 --- a/src/pubkey.h +++ b/src/pubkey.h @@ -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. |