X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fbase58.cpp;h=1c26380ff378f5424d9407e10b0def225da6e8d7;hb=2404891de8ac5b357d0abde90f2e286a3153fdef;hp=2691ea4d6f999d8d47533443437f0aaf67a93076;hpb=62b3df9c02e86432aa73f8b475900946bb348816;p=novacoin.git diff --git a/src/base58.cpp b/src/base58.cpp index 2691ea4..1c26380 100644 --- a/src/base58.cpp +++ b/src/base58.cpp @@ -254,6 +254,13 @@ bool DecodeBase58Check(const std::string& str, std::vector& vchRe return true; } + bool CBitcoinAddress::Set(const CBitcoinAddress &dest) + { + nVersion = dest.nVersion; + vchData = dest.vchData; + return true; + } + bool CBitcoinAddress::IsValid() const { unsigned int nExpectedSize = 20;