Bitcoin Core  0.21.0rc5
P2P Digital Currency
ismine.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2019 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_ISMINE_H
7 #define BITCOIN_WALLET_ISMINE_H
8 
9 #include <script/standard.h>
10 
11 #include <stdint.h>
12 #include <bitset>
13 
14 class CWallet;
15 class CScript;
16 
18 enum isminetype : unsigned int
19 {
20  ISMINE_NO = 0,
22  ISMINE_SPENDABLE = 1 << 1,
23  ISMINE_USED = 1 << 2,
27 };
29 typedef uint8_t isminefilter;
30 
35 {
36  // NO and ALL are never (supposed to be) cached
37  std::bitset<ISMINE_ENUM_ELEMENTS> m_cached;
39  inline void Reset()
40  {
41  m_cached.reset();
42  }
43  void Set(isminefilter filter, CAmount value)
44  {
45  m_cached.set(filter);
46  m_value[filter] = value;
47  }
48 };
49 
50 #endif // BITCOIN_WALLET_ISMINE_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:405
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:623
uint8_t isminefilter
Definition: wallet.h:36
isminetype
IsMine() return codes.
Definition: ismine.h:19
@ ISMINE_ALL
Definition: ismine.h:24
@ ISMINE_SPENDABLE
Definition: ismine.h:22
@ ISMINE_NO
Definition: ismine.h:20
@ ISMINE_WATCH_ONLY
Definition: ismine.h:21
@ ISMINE_ALL_USED
Definition: ismine.h:25
@ ISMINE_USED
Definition: ismine.h:23
@ ISMINE_ENUM_ELEMENTS
Definition: ismine.h:26
uint8_t isminefilter
used for bitflags of isminetype
Definition: ismine.h:29
Cachable amount subdivided into watchonly and spendable parts.
Definition: ismine.h:35
void Set(isminefilter filter, CAmount value)
Definition: ismine.h:43
CAmount m_value[ISMINE_ENUM_ELEMENTS]
Definition: ismine.h:38
std::bitset< ISMINE_ENUM_ELEMENTS > m_cached
Definition: ismine.h:37
void Reset()
Definition: ismine.h:39