aboutsummaryrefslogtreecommitdiff
path: root/src/primitives/block.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-08-22 09:56:23 +0100
committerfanquake <fanquake@gmail.com>2022-08-22 10:00:46 +0100
commit0f35f4ddf405196a61bfc0616b82e826f1698862 (patch)
treef989ddac7885e36409438a096cf95ce787b44bd3 /src/primitives/block.h
parent027b6729bce7f59a0744e17b210e347a098631ad (diff)
parenteeee5ada23f2a71d245671556b6ecfdaabfeddf4 (diff)
downloadbitcoin-0f35f4ddf405196a61bfc0616b82e826f1698862.tar.xz
Merge bitcoin/bitcoin#25786: refactor: Make adjusted time type safe
eeee5ada23f2a71d245671556b6ecfdaabfeddf4 Make adjusted time type safe (MacroFake) fa3be799fe951a7ea9b4de78d5a907c6db71eeb8 Add time helpers (MacroFake) Pull request description: This makes follow-ups easier to review. Also, it makes sense by itself. ACKs for top commit: ryanofsky: Code review ACK eeee5ada23f2a71d245671556b6ecfdaabfeddf4. Confirmed type changes and equivalent code changes only. Tree-SHA512: 51bf1ae5428552177286113babdd49e82459d6c710a07b6e80a0a045d373cf51045ee010461aba98e0151d8d71b9b3b5f8f73e302d46ba4558e0b55201f99e9f
Diffstat (limited to 'src/primitives/block.h')
-rw-r--r--src/primitives/block.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/primitives/block.h b/src/primitives/block.h
index 2d10853607..76aba6c899 100644
--- a/src/primitives/block.h
+++ b/src/primitives/block.h
@@ -9,6 +9,7 @@
#include <primitives/transaction.h>
#include <serialize.h>
#include <uint256.h>
+#include <util/time.h>
/** Nodes collect new transactions into a block, hash them into a hash tree,
* and scan through nonce values to make the block's hash satisfy proof-of-work
@@ -52,6 +53,11 @@ public:
uint256 GetHash() const;
+ NodeSeconds Time() const
+ {
+ return NodeSeconds{std::chrono::seconds{nTime}};
+ }
+
int64_t GetBlockTime() const
{
return (int64_t)nTime;