From 690c723e5fef4de77a2f1cbc51c9b3166c509520 Mon Sep 17 00:00:00 2001 From: Wladimir J. van der Laan Date: Tue, 26 Jul 2011 16:54:32 +0200 Subject: [PATCH] make SetHash160 return a value (as specified in the function signature) --- src/base58.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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) -- 1.7.1