6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_POP_KEYSTONE_UTIL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_BLOCKCHAIN_POP_KEYSTONE_UTIL_HPP_
20bool isKeystone(int32_t blockNumber, uint32_t keystoneInterval);
23int32_t blockHeightToKeystoneNumber(int32_t blockHeight,
24 uint32_t keystoneInterval);
27int32_t highestKeystoneAtOrBefore(int32_t blockNumber,
28 uint32_t keystoneInterval);
30int32_t firstKeystoneAfter(int32_t blockNumber, uint32_t keystoneInterval);
33int32_t highestBlockWhichConnectsKeystoneToPrevious(
34 int32_t blockNumberOfKeystone, uint32_t keystoneInterval);
37bool isCrossedKeystoneBoundary(int32_t bottomHeight,
39 uint32_t keystoneInterval);
42bool areOnSameKeystoneInterval(int32_t height1,
44 uint32_t keystoneInterval);
51int32_t getPreviousKeystoneHeight(int32_t height,
52 uint32_t keystoneInterval,
53 uint32_t keystone_num);
All constants in alt-cpp.
bool isKeystone(int32_t blockNumber, uint32_t keystoneInterval)
Calculates if block with height = blockNumber is keystone.