mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
15 lines
514 B
C++
15 lines
514 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{raw_bench::block813851_raw, raw_bench::block813851_raw + sizeof(raw_bench::block813851_raw) / sizeof(raw_bench::block813851_raw[0])};
|
||
|
|
||
|
} // namespace data
|
||
|
} // namespace benchmark
|