previous hash added to GBT
This commit is contained in:
parent
54fbf2afb3
commit
7de1a2d57a
|
@ -475,6 +475,7 @@ namespace cryptonote
|
||||||
LOG_ERROR("Failed to calculate offset for ");
|
LOG_ERROR("Failed to calculate offset for ");
|
||||||
return false;
|
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.blocktemplate_blob = string_tools::buff_to_hex_nodelimer(block_blob);
|
||||||
res.status = CORE_RPC_STATUS_OK;
|
res.status = CORE_RPC_STATUS_OK;
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -383,6 +383,7 @@ namespace cryptonote
|
||||||
uint64_t difficulty;
|
uint64_t difficulty;
|
||||||
uint64_t height;
|
uint64_t height;
|
||||||
uint64_t reserved_offset;
|
uint64_t reserved_offset;
|
||||||
|
std::string prev_hash;
|
||||||
blobdata blocktemplate_blob;
|
blobdata blocktemplate_blob;
|
||||||
std::string status;
|
std::string status;
|
||||||
|
|
||||||
|
@ -390,6 +391,7 @@ namespace cryptonote
|
||||||
KV_SERIALIZE(difficulty)
|
KV_SERIALIZE(difficulty)
|
||||||
KV_SERIALIZE(height)
|
KV_SERIALIZE(height)
|
||||||
KV_SERIALIZE(reserved_offset)
|
KV_SERIALIZE(reserved_offset)
|
||||||
|
KV_SERIALIZE(prev_hash)
|
||||||
KV_SERIALIZE(blocktemplate_blob)
|
KV_SERIALIZE(blocktemplate_blob)
|
||||||
KV_SERIALIZE(status)
|
KV_SERIALIZE(status)
|
||||||
END_KV_SERIALIZE_MAP()
|
END_KV_SERIALIZE_MAP()
|
||||||
|
|
Loading…
Reference in New Issue