aboutsummaryrefslogtreecommitdiff
path: root/src/keystore.h
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2011-10-10 15:51:07 -0400
committerGavin Andresen <gavinandresen@gmail.com>2011-10-25 11:40:59 -0400
commit0767e691996812f12e24c082e83184dcc86a552a (patch)
tree26a59dc94d551cad650b8fa41d17b7de6cb137d8 /src/keystore.h
parentd0415902184768a997726fe1c8bdd613349f97b4 (diff)
downloadbitcoin-0767e691996812f12e24c082e83184dcc86a552a.tar.xz
Add returns to avoid annoying compile-time warnings.
Diffstat (limited to 'src/keystore.h')
-rw-r--r--src/keystore.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/keystore.h b/src/keystore.h
index bbfac83d1f..1f2c6aea3e 100644
--- a/src/keystore.h
+++ b/src/keystore.h
@@ -114,6 +114,7 @@ public:
return CBasicKeyStore::HaveKey(address);
return mapCryptedKeys.count(address) > 0;
}
+ return false;
}
bool GetKey(const CBitcoinAddress &address, CKey& keyOut) const;
bool GetPubKey(const CBitcoinAddress &address, std::vector<unsigned char>& vchPubKeyOut) const;