previous hash added to GBT

getblocktemplate-height
Riccardo Spagni 10 years ago
parent 54fbf2afb3
commit 7de1a2d57a
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -475,6 +475,7 @@ namespace cryptonote
LOG_ERROR("Failed to calculate offset for ");
return false;
}
res.prev_hash = string_tools::pod_to_hex(b.prev_id);
res.blocktemplate_blob = string_tools::buff_to_hex_nodelimer(block_blob);
res.status = CORE_RPC_STATUS_OK;
return true;

@ -383,6 +383,7 @@ namespace cryptonote
uint64_t difficulty;
uint64_t height;
uint64_t reserved_offset;
std::string prev_hash;
blobdata blocktemplate_blob;
std::string status;
@ -390,6 +391,7 @@ namespace cryptonote
KV_SERIALIZE(difficulty)
KV_SERIALIZE(height)
KV_SERIALIZE(reserved_offset)
KV_SERIALIZE(prev_hash)
KV_SERIALIZE(blocktemplate_blob)
KV_SERIALIZE(status)
END_KV_SERIALIZE_MAP()

Loading…
Cancel
Save