Bitcoin ABC
0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
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
GetRand
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition
random.h:85
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 Fri Nov 22 2024 02:38:22 for Bitcoin ABC by
1.9.8