// Copyright (c) 2011-2016 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once #include #include #include namespace Tests { enum class NodeType { RPC, InProcess }; struct TestNodeConfiguration { NodeType nodeType = NodeType::RPC; bool testnet = true; uint16_t p2pPort; uint16_t rpcPort; std::string dataDir; std::string blockchainLocation; // copy blockchain from this path std::string logFile; std::string daemonPath; // only for rpc node bool cleanupDataDir = true; std::vector exclusiveNodes; std::string getP2pAddress() const { return "127.0.0.1:" + std::to_string(p2pPort); } }; }