Bitcoin Core 30.99.0
P2P Digital Currency
types.h
Go to the documentation of this file.
1// Copyright (c) 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_KERNEL_TYPES_H
14#define BITCOIN_KERNEL_TYPES_H
15
16namespace kernel {
22 bool validated{true};
23
26 bool historical{false};
27};
28} // namespace kernel
29
30#endif // BITCOIN_KERNEL_TYPES_H
Information about chainstate that notifications are sent from.
Definition: types.h:18
bool validated
Whether this is a notification from a chainstate that's been fully validated starting from the genesi...
Definition: types.h:22
bool historical
Whether this is a historical chainstate downloading old blocks to validate an assumeutxo snapshot,...
Definition: types.h:26