Skip to content

Commit 2b173d3

Browse files
committed
Update comments in keystore to be doxygen compatible
1 parent ffd8edd commit 2b173d3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/key.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "ecwrapper.h"
1414
#endif
1515

16-
//! anonymous namespace with local implementation code (OpenSSL interaction)
16+
//! anonymous namespace
1717
namespace {
1818

1919
#ifdef USE_SECP256K1

src/keystore.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) 2009-2010 Satoshi Nakamoto
2-
// Copyright (c) 2009-2013 The Bitcoin developers
3-
// Distributed under the MIT/X11 software license, see the accompanying
2+
// Copyright (c) 2009-2014 The Bitcoin developers
3+
// Distributed under the MIT software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

66
#include "keystore.h"

src/keystore.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) 2009-2010 Satoshi Nakamoto
2-
// Copyright (c) 2009-2013 The Bitcoin developers
3-
// Distributed under the MIT/X11 software license, see the accompanying
2+
// Copyright (c) 2009-2014 The Bitcoin developers
3+
// Distributed under the MIT software license, see the accompanying
44
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

66
#ifndef BITCOIN_KEYSTORE_H
@@ -24,22 +24,22 @@ class CKeyStore
2424
public:
2525
virtual ~CKeyStore() {}
2626

27-
// Add a key to the store.
27+
//! Add a key to the store.
2828
virtual bool AddKeyPubKey(const CKey &key, const CPubKey &pubkey) =0;
2929
virtual bool AddKey(const CKey &key);
3030

31-
// Check whether a key corresponding to a given address is present in the store.
31+
//! Check whether a key corresponding to a given address is present in the store.
3232
virtual bool HaveKey(const CKeyID &address) const =0;
3333
virtual bool GetKey(const CKeyID &address, CKey& keyOut) const =0;
3434
virtual void GetKeys(std::set<CKeyID> &setAddress) const =0;
3535
virtual bool GetPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const;
3636

37-
// Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki
37+
//! Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki
3838
virtual bool AddCScript(const CScript& redeemScript) =0;
3939
virtual bool HaveCScript(const CScriptID &hash) const =0;
4040
virtual bool GetCScript(const CScriptID &hash, CScript& redeemScriptOut) const =0;
4141

42-
// Support for Watch-only addresses
42+
//! Support for Watch-only addresses
4343
virtual bool AddWatchOnly(const CScript &dest) =0;
4444
virtual bool RemoveWatchOnly(const CScript &dest) =0;
4545
virtual bool HaveWatchOnly(const CScript &dest) const =0;

0 commit comments

Comments
 (0)