Bitcoin ABC 0.30.5
P2P Digital Currency
blockhash.h
Go to the documentation of this file.
1// Copyright (c) 2019 The Bitcoin developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_PRIMITIVES_BLOCKHASH_H
6#define BITCOIN_PRIMITIVES_BLOCKHASH_H
7
8#include <uint256.h>
9
13struct BlockHash : public uint256 {
14 explicit BlockHash() : uint256() {}
15 explicit BlockHash(const uint256 &b) : uint256(b) {}
16
17 static BlockHash fromHex(const std::string &str) {
18 BlockHash r;
19 r.SetHex(str);
20 return r;
21 }
22};
23
24#endif // BITCOIN_PRIMITIVES_BLOCKHASH_H
void SetHex(const char *psz)
Definition: uint256.cpp:24
256-bit opaque blob.
Definition: uint256.h:129
A BlockHash is a unqiue identifier for a block.
Definition: blockhash.h:13
static BlockHash fromHex(const std::string &str)
Definition: blockhash.h:17
BlockHash()
Definition: blockhash.h:14
BlockHash(const uint256 &b)
Definition: blockhash.h:15