2021-12-30 19:36:57 +02:00
|
|
|
// Copyright (c) 2019-2021 The Bitcoin Core developers
|
2019-07-01 21:42:22 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
#include <bench/data.h>
|
|
|
|
|
|
2024-08-26 17:27:54 +02:00
|
|
|
#include <iterator>
|
|
|
|
|
|
2019-07-01 21:42:22 +01:00
|
|
|
namespace benchmark {
|
|
|
|
|
namespace data {
|
|
|
|
|
|
|
|
|
|
#include <bench/data/block413567.raw.h>
|
2021-01-31 17:28:23 +01:00
|
|
|
const std::vector<uint8_t> block413567{std::begin(block413567_raw), std::end(block413567_raw)};
|
2019-07-01 21:42:22 +01:00
|
|
|
|
|
|
|
|
} // namespace data
|
|
|
|
|
} // namespace benchmark
|