danicoin/tests/IntegrationTestLib/NetworkConfiguration.h
2016-01-18 15:33:29 +00:00

38 lines
798 B
C++

// 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 <cstdint>
#include <string>
#include <vector>
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<std::string> exclusiveNodes;
std::string getP2pAddress() const {
return "127.0.0.1:" + std::to_string(p2pPort);
}
};
}