add vote rpc res

This commit is contained in:
wowario 2021-06-22 20:54:47 +03:00
parent 4f16bd2b95
commit 45f275e9e4
2 changed files with 3 additions and 0 deletions

View File

@ -1859,6 +1859,7 @@ namespace cryptonote
res.blocktemplate_blob = string_tools::buff_to_hex_nodelimer(block_blob);
res.blockhashing_blob = string_tools::buff_to_hex_nodelimer(hashing_blob);
res.status = CORE_RPC_STATUS_OK;
res.vote = 0;
return true;
}
//------------------------------------------------------------------------------------------------------------------------------

View File

@ -921,6 +921,7 @@ namespace cryptonote
blobdata blocktemplate_blob;
blobdata blockhashing_blob;
uint64_t unlock_height;
uint16_t vote;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE_PARENT(rpc_response_base)
@ -937,6 +938,7 @@ namespace cryptonote
KV_SERIALIZE(seed_hash)
KV_SERIALIZE(next_seed_hash)
KV_SERIALIZE(unlock_height)
KV_SERIALIZE(vote)
END_KV_SERIALIZE_MAP()
};
typedef epee::misc_utils::struct_init<response_t> response;