aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-07-26 16:54:32 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-07-26 16:59:31 +0200
commit690c723e5fef4de77a2f1cbc51c9b3166c509520 (patch)
tree93d03c8b972cb3f77626e7297acb6e8ec5394bda /src/base58.h
parenta9ba47101a46533ff0418d6868ebc9bf5c889818 (diff)
downloadbitcoin-690c723e5fef4de77a2f1cbc51c9b3166c509520.tar.xz
make SetHash160 return a value (as specified in the function signature)
Diffstat (limited to 'src/base58.h')
-rw-r--r--src/base58.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/base58.h b/src/base58.h
index 266412c861..04922c74d8 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<unsigned char>& vchPubKey)