Remove trailing whitespace

This commit is contained in:
Zachary Michaels 2014-06-24 12:32:36 -04:00
parent 767d003f8b
commit 976db0e898

View File

@ -240,7 +240,7 @@ namespace cryptonote
};
};
//-----------------------------------------------
struct COMMAND_RPC_STOP_MINING
{
@ -311,7 +311,7 @@ namespace cryptonote
END_KV_SERIALIZE_MAP()
};
};
//
struct COMMAND_RPC_GETBLOCKCOUNT
{
@ -372,7 +372,7 @@ namespace cryptonote
struct COMMAND_RPC_SUBMITBLOCK
{
typedef std::vector<std::string> request;
struct response
{
std::string status;
@ -382,7 +382,7 @@ namespace cryptonote
END_KV_SERIALIZE_MAP()
};
};
struct block_header_responce
{
uint8_t major_version;
@ -396,7 +396,7 @@ namespace cryptonote
std::string hash;
difficulty_type difficulty;
uint64_t reward;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(major_version)
KV_SERIALIZE(minor_version)
@ -411,7 +411,7 @@ namespace cryptonote
KV_SERIALIZE(reward)
END_KV_SERIALIZE_MAP()
};
struct COMMAND_RPC_GET_LAST_BLOCK_HEADER
{
typedef std::list<std::string> request;
@ -420,7 +420,7 @@ namespace cryptonote
{
std::string status;
block_header_responce block_header;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(block_header)
KV_SERIALIZE(status)
@ -428,7 +428,7 @@ namespace cryptonote
};
};
struct COMMAND_RPC_GET_BLOCK_HEADER_BY_HASH
{
struct request
@ -444,7 +444,7 @@ namespace cryptonote
{
std::string status;
block_header_responce block_header;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(block_header)
KV_SERIALIZE(status)
@ -468,7 +468,7 @@ namespace cryptonote
{
std::string status;
block_header_responce block_header;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(block_header)
KV_SERIALIZE(status)