mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-06 13:09:43 +01:00
17 lines
525 B
C++
17 lines
525 B
C++
// Copyright (c) 2020-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_TEST_UTIL_INDEX_H
|
|
#define BITCOIN_TEST_UTIL_INDEX_H
|
|
|
|
class BaseIndex;
|
|
namespace util {
|
|
class SignalInterrupt;
|
|
} // namespace util
|
|
|
|
/** Block until the index is synced to the current chain */
|
|
void IndexWaitSynced(const BaseIndex& index, const util::SignalInterrupt& interrupt);
|
|
|
|
#endif // BITCOIN_TEST_UTIL_INDEX_H
|