mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
a6cdb75b18
Signed-off-by: pasta <pasta@dashboost.org>
20 lines
541 B
C++
20 lines
541 B
C++
// Copyright (c) 2014-2019 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 BITCOIN_MASTERNODE_MASTERNODE_UTILS_H
|
|
#define BITCOIN_MASTERNODE_MASTERNODE_UTILS_H
|
|
|
|
#include <evo/deterministicmns.h>
|
|
|
|
class CConnman;
|
|
|
|
class CMasternodeUtils
|
|
{
|
|
public:
|
|
static void ProcessMasternodeConnections(CConnman& connman);
|
|
static void DoMaintenance(CConnman &connman);
|
|
};
|
|
|
|
#endif // BITCOIN_MASTERNODE_MASTERNODE_UTILS_H
|