aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-05-14 19:07:52 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2012-05-24 19:58:12 +0200
commitfd61d6f5068cf92d34569862b4225f177049a4f0 (patch)
tree5556094bda3a7162535b9352b67016e620bb9a77 /src/base58.h
parentf04017f702e36563b9ba05b3fede216767de580a (diff)
downloadbitcoin-fd61d6f5068cf92d34569862b4225f177049a4f0.tar.xz
Encapsulate public keys in CPubKey
Diffstat (limited to 'src/base58.h')
-rw-r--r--src/base58.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base58.h b/src/base58.h
index a4ff35c4a8..26d8c5f9ed 100644
--- a/src/base58.h
+++ b/src/base58.h
@@ -275,9 +275,9 @@ public:
return true;
}
- void SetPubKey(const std::vector<unsigned char>& vchPubKey)
+ void SetPubKey(const CPubKey& vchPubKey)
{
- SetHash160(Hash160(vchPubKey));
+ SetHash160(vchPubKey.GetID());
}
bool SetScriptHash160(const uint160& hash160)
@@ -333,7 +333,7 @@ public:
SetHash160(hash160In);
}
- CBitcoinAddress(const std::vector<unsigned char>& vchPubKey)
+ CBitcoinAddress(const CPubKey& vchPubKey)
{
SetPubKey(vchPubKey);
}