From: Wladimir J. van der Laan Date: Tue, 26 Jul 2011 14:54:32 +0000 (+0200) Subject: make SetHash160 return a value (as specified in the function signature) X-Git-Tag: v0.4.0-unstable~226^2~57^2~93 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=5326a312495462af58c8388885b9ba75ba22064a make SetHash160 return a value (as specified in the function signature) --- diff --git a/src/base58.h b/src/base58.h index 266412c..04922c7 100644 --- a/src/base58.h +++ b/src/base58.h @@ -244,6 +244,7 @@ public: bool SetHash160(const uint160& hash160) { SetData(fTestNet ? 111 : 0, &hash160, 20); + return true; } bool SetPubKey(const std::vector& vchPubKey)