// 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 class CConnman; class CMasternodeUtils { public: static void ProcessMasternodeConnections(CConnman& connman); static void DoMaintenance(CConnman &connman); }; #endif // BITCOIN_MASTERNODE_MASTERNODE-UTILS_H