Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Doy-lee committed Apr 20, 2020
1 parent 1e3d3d4 commit be232ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/rpc/core_rpc_server_commands_defs.h
Expand Up @@ -2516,8 +2516,8 @@ constexpr char const CORE_RPC_STATUS_TX_LONG_POLL_MAX_CONNECTIONS[] = "Daemon ma
// Get the quorum state which is the list of public keys of the nodes who are voting, and the list of public keys of the nodes who are being tested.
struct COMMAND_RPC_GET_QUORUM_STATE
{
static constexpr uint64_t HEIGHT_SENTINEL_VALUE = UINT64_MAX;
static constexpr uint8_t ALL_QUORUMS_SENTINEL_VALUE = 255;
static const uint64_t HEIGHT_SENTINEL_VALUE = UINT64_MAX;
static const uint8_t ALL_QUORUMS_SENTINEL_VALUE = 255;
struct request_t
{
uint64_t start_height; // (Optional): Start height, omit both start and end height to request the latest quorum
Expand Down Expand Up @@ -3286,8 +3286,8 @@ constexpr char const CORE_RPC_STATUS_TX_LONG_POLL_MAX_CONNECTIONS[] = "Daemon ma
// Query hardcoded/service node checkpoints stored for the blockchain. Omit all arguments to retrieve the latest "count" checkpoints.
struct COMMAND_RPC_GET_CHECKPOINTS
{
constexpr static uint32_t NUM_CHECKPOINTS_TO_QUERY_BY_DEFAULT = 60;
constexpr static uint64_t HEIGHT_SENTINEL_VALUE = (UINT64_MAX - 1);
const static uint32_t NUM_CHECKPOINTS_TO_QUERY_BY_DEFAULT = 60;
const static uint64_t HEIGHT_SENTINEL_VALUE = (UINT64_MAX - 1);
struct request_t
{
uint64_t start_height; // Optional: Get the first count checkpoints starting from this height. Specify both start and end to get the checkpoints inbetween.
Expand Down Expand Up @@ -3383,8 +3383,8 @@ constexpr char const CORE_RPC_STATUS_TX_LONG_POLL_MAX_CONNECTIONS[] = "Daemon ma
// Query hardcoded/service node checkpoints stored for the blockchain. Omit all arguments to retrieve the latest "count" checkpoints.
struct COMMAND_RPC_GET_SN_STATE_CHANGES
{
constexpr static uint32_t NUM_BLOCKS_TO_SCAN_BY_DEFAULT = 720;
constexpr static uint64_t HEIGHT_SENTINEL_VALUE = (UINT64_MAX - 1);
const static uint32_t NUM_BLOCKS_TO_SCAN_BY_DEFAULT = 720;
const static uint64_t HEIGHT_SENTINEL_VALUE = (UINT64_MAX - 1);
struct request_t
{
uint64_t start_height;
Expand Down

0 comments on commit be232ce

Please sign in to comment.