diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2018-01-23 13:16:56 -0500 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2018-01-23 13:16:56 -0500 |
commit | 04ededf0015a05b90ce150dd0c7dddb4c028b08b (patch) | |
tree | e3786697186531b8a8d69adaf07454bb01153b6d | |
parent | b5e4b9b5100ec15217d43edb5f4149439f4b20a5 (diff) |
Make CKey::Load references const
No change in behavior, this just prevents CKey::Load arguments from looking
like outputs.
-rw-r--r-- | src/key.cpp | 2 | ||||
-rw-r--r-- | src/key.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/key.cpp b/src/key.cpp index f8136f88b5..e998e3db6e 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -233,7 +233,7 @@ bool CKey::SignCompact(const uint256 &hash, std::vector<unsigned char>& vchSig) return true; } -bool CKey::Load(CPrivKey &privkey, CPubKey &vchPubKey, bool fSkipCheck=false) { +bool CKey::Load(const CPrivKey &privkey, const CPubKey &vchPubKey, bool fSkipCheck=false) { if (!ec_privkey_import_der(secp256k1_context_sign, (unsigned char*)begin(), privkey.data(), privkey.size())) return false; fCompressed = vchPubKey.IsCompressed(); @@ -135,7 +135,7 @@ public: bool VerifyPubKey(const CPubKey& vchPubKey) const; //! Load private key and check that public key matches. - bool Load(CPrivKey& privkey, CPubKey& vchPubKey, bool fSkipCheck); + bool Load(const CPrivKey& privkey, const CPubKey& vchPubKey, bool fSkipCheck); }; struct CExtKey { |