22 lines
503 B
C++
22 lines
503 B
C++
// Copyright (c) 2018 The Dash Core developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef DASH_QUORUMS_INIT_H
|
|
#define DASH_QUORUMS_INIT_H
|
|
|
|
class CEvoDB;
|
|
|
|
namespace llmq
|
|
{
|
|
|
|
// If true, we will connect to all new quorums and watch their communication
|
|
static const bool DEFAULT_WATCH_QUORUMS = false;
|
|
|
|
void InitLLMQSystem(CEvoDB& evoDb);
|
|
void DestroyLLMQSystem();
|
|
|
|
}
|
|
|
|
#endif //DASH_QUORUMS_INIT_H
|