mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
8542752296
Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
15 lines
459 B
C++
15 lines
459 B
C++
// Copyright (c) 2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <bench/data.h>
|
|
|
|
namespace benchmark {
|
|
namespace data {
|
|
|
|
#include <bench/data/block813851.raw.h>
|
|
const std::vector<uint8_t> block813851{std::begin(raw_bench::block813851_raw), std::end(raw_bench::block813851_raw)};
|
|
|
|
} // namespace data
|
|
} // namespace benchmark
|