2019-01-29 15:53:14 +01:00
|
|
|
// Copyright (c) 2014-2019 The Dash Core developers
|
2019-01-03 21:08:34 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2018-04-02 00:30:17 +02:00
|
|
|
#ifndef BITCOIN_MASTERNODE_MASTERNODE-UTILS_H
|
|
|
|
#define BITCOIN_MASTERNODE_MASTERNODE-UTILS_H
|
2019-01-03 21:08:34 +01:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <evo/deterministicmns.h>
|
2019-01-03 21:08:34 +01:00
|
|
|
|
|
|
|
class CConnman;
|
|
|
|
|
|
|
|
class CMasternodeUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void ProcessMasternodeConnections(CConnman& connman);
|
|
|
|
static void DoMaintenance(CConnman &connman);
|
|
|
|
};
|
|
|
|
|
2018-04-02 00:30:17 +02:00
|
|
|
#endif // BITCOIN_MASTERNODE_MASTERNODE-UTILS_H
|