Rename scriptutils.o to wallet_ismine.o
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
8b59a3d366
commit
c1e433b717
28
src/wallet_ismine.h
Normal file
28
src/wallet_ismine.h
Normal file
@@ -0,0 +1,28 @@
|
||||
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
||||
// Copyright (c) 2009-2013 The Bitcoin developers
|
||||
// Distributed under the MIT/X11 software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#ifndef H_BITCOIN_WALLET_ISMINE
|
||||
#define H_BITCOIN_WALLET_ISMINE
|
||||
|
||||
#include "key.h"
|
||||
#include "script/script.h"
|
||||
|
||||
class CKeyStore;
|
||||
|
||||
/** IsMine() return codes */
|
||||
enum isminetype
|
||||
{
|
||||
ISMINE_NO = 0,
|
||||
ISMINE_WATCH_ONLY = 1,
|
||||
ISMINE_SPENDABLE = 2,
|
||||
ISMINE_ALL = ISMINE_WATCH_ONLY | ISMINE_SPENDABLE
|
||||
};
|
||||
/** used for bitflags of isminetype */
|
||||
typedef uint8_t isminefilter;
|
||||
|
||||
isminetype IsMine(const CKeyStore& keystore, const CScript& scriptPubKey);
|
||||
isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest);
|
||||
|
||||
#endif // H_BITCOIN_SCRIPT
|
||||
Reference in New Issue
Block a user