veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
time.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_VERIBLOCK_TIME_HPP
7#define ALT_INTEGRATION_VERIBLOCK_TIME_HPP
8
9#include <cstdint>
10#include <ctime>
11
12namespace altintegration {
13
18void setMockTime(uint32_t mocktime);
19
21uint32_t getMockTime();
22
25
26} // namespace altintegration
27
28#endif // ! ALT_INTEGRATION_INCLUDE_VERIBLOCK
Defines logging helpers.
Definition: block.hpp:14
uint32_t currentTimestamp4()
Get current time as 4 bytes. If mock time is set, returns mock time.
uint32_t getMockTime()
Get current mock time.
void setMockTime(uint32_t mocktime)
Set mock time for usage in unit tests.