Dash Core  0.12.2.1
P2P Digital Currency
wallet_ismine.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2015 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef BITCOIN_WALLET_WALLET_ISMINE_H
7 #define BITCOIN_WALLET_WALLET_ISMINE_H
8 
9 #include "script/standard.h"
10 
11 #include <stdint.h>
12 
13 class CKeyStore;
14 class CScript;
15 
18 {
19  ISMINE_NO = 0,
27 };
29 typedef uint8_t isminefilter;
30 
31 isminetype IsMine(const CKeyStore& keystore, const CScript& scriptPubKey);
32 isminetype IsMine(const CKeyStore& keystore, const CTxDestination& dest);
33 
34 #endif // BITCOIN_WALLET_WALLET_ISMINE_H
boost::variant< CNoDestination, CKeyID, CScriptID > CTxDestination
Definition: standard.h:69
uint8_t isminefilter
Definition: wallet_ismine.h:29
isminetype IsMine(const CKeyStore &keystore, const CScript &scriptPubKey)
Indicates that we know how to create a scriptSig that would solve this if we were given the appropria...
Definition: wallet_ismine.h:23
isminetype
Definition: wallet_ismine.h:17
Indicates that we don&#39;t know how to create a scriptSig that would solve this if we were given the app...
Definition: wallet_ismine.h:21