diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-26 16:54:32 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-26 16:54:32 +0200 |
| commit | 5326a312495462af58c8388885b9ba75ba22064a (patch) | |
| tree | 88e77d003a9d804f18811fca6e9e9fa3790dcb21 /src | |
| parent | Merge remote branch 'upstream/master' (diff) | |
| download | discoin-5326a312495462af58c8388885b9ba75ba22064a.tar.xz discoin-5326a312495462af58c8388885b9ba75ba22064a.zip | |
make SetHash160 return a value (as specified in the function signature)
Diffstat (limited to 'src')
| -rw-r--r-- | src/base58.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/base58.h b/src/base58.h index 266412c86..04922c74d 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) |