diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2011-07-05 20:53:43 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2011-07-17 12:09:14 +0200 |
commit | 2ffba736e9102d016b96c2e5de2ce7757e612667 (patch) | |
tree | fb96acfec05aa767cb3ba2df9b93569f2a6c04db /src/key.h | |
parent | 03fbd7904903928b0d1c8542a3d597aaf5bdd31b (diff) |
Use CBitcoinAddress instead of string/uint160
Instead of conversion functions between pubkey/uint160/address in
base58.h, have a fully fledged class CBitcoinAddress (CAddress was
already taken) to represent addresses.
Diffstat (limited to 'src/key.h')
-rw-r--r-- | src/key.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -220,6 +220,11 @@ public: return false; return true; } + + CBitcoinAddress GetAddress() const + { + return CBitcoinAddress(GetPubKey()); + } }; #endif |