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
12
namespace
altintegration
{
13
18
void
setMockTime
(uint32_t mocktime);
19
21
uint32_t
getMockTime
();
22
24
uint32_t
currentTimestamp4
();
25
26
}
// namespace altintegration
27
28
#endif
// ! ALT_INTEGRATION_INCLUDE_VERIBLOCK
altintegration
Defines logging helpers.
Definition:
block.hpp:14
altintegration::currentTimestamp4
uint32_t currentTimestamp4()
Get current time as 4 bytes. If mock time is set, returns mock time.
altintegration::getMockTime
uint32_t getMockTime()
Get current mock time.
altintegration::setMockTime
void setMockTime(uint32_t mocktime)
Set mock time for usage in unit tests.