Bitcoin Core  28.1.0
P2P Digital Currency
types.h
Go to the documentation of this file.
1 // Copyright (c) 2010-2021 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
12 
13 #ifndef BITCOIN_NODE_TYPES_H
14 #define BITCOIN_NODE_TYPES_H
15 
16 #include <cstddef>
17 
18 namespace node {
19 enum class TransactionError {
20  OK,
28 };
29 
34  bool use_mempool{true};
46 };
47 } // namespace node
48 
49 #endif // BITCOIN_NODE_TYPES_H
TransactionError
Definition: types.h:19
size_t coinbase_output_max_additional_sigops
The maximum additional sigops which the pool will add in coinbase transaction outputs.
Definition: types.h:45
size_t coinbase_max_additional_weight
The maximum additional weight which the pool will add to the coinbase scriptSig, witness and outputs...
Definition: types.h:40
Definition: messages.h:20
bool use_mempool
Set false to omit mempool transactions.
Definition: types.h:34