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