veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
keystone_util.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_POP_KEYSTONE_UTIL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_POP_KEYSTONE_UTIL_HPP_
8
9#include <stdexcept>
11
12namespace altintegration {
13
20bool isKeystone(int32_t blockNumber, uint32_t keystoneInterval);
21
23int32_t blockHeightToKeystoneNumber(int32_t blockHeight,
24 uint32_t keystoneInterval);
25
27int32_t highestKeystoneAtOrBefore(int32_t blockNumber,
28 uint32_t keystoneInterval);
30int32_t firstKeystoneAfter(int32_t blockNumber, uint32_t keystoneInterval);
31
33int32_t highestBlockWhichConnectsKeystoneToPrevious(
34 int32_t blockNumberOfKeystone, uint32_t keystoneInterval);
35
37bool isCrossedKeystoneBoundary(int32_t bottomHeight,
38 int32_t tipHeight,
39 uint32_t keystoneInterval);
40
42bool areOnSameKeystoneInterval(int32_t height1,
43 int32_t height2,
44 uint32_t keystoneInterval);
45
51int32_t getPreviousKeystoneHeight(int32_t height,
52 uint32_t keystoneInterval,
53 uint32_t keystone_num);
54} // namespace altintegration
55
56#endif // ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_POP_KEYSTONE_UTIL_HPP_
All constants in alt-cpp.
Defines logging helpers.
Definition: block.hpp:14
bool isKeystone(int32_t blockNumber, uint32_t keystoneInterval)
Calculates if block with height = blockNumber is keystone.