Bitcoin ABC
0.30.5
P2P Digital Currency
src
primitives
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
13
struct
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
base_blob::SetHex
void SetHex(const char *psz)
Definition:
uint256.cpp:24
uint256
256-bit opaque blob.
Definition:
uint256.h:129
BlockHash
A BlockHash is a unqiue identifier for a block.
Definition:
blockhash.h:13
BlockHash::fromHex
static BlockHash fromHex(const std::string &str)
Definition:
blockhash.h:17
BlockHash::BlockHash
BlockHash()
Definition:
blockhash.h:14
BlockHash::BlockHash
BlockHash(const uint256 &b)
Definition:
blockhash.h:15
uint256.h
Generated on Wed Nov 20 2024 17:55:58 for Bitcoin ABC by
1.9.4