Add tx_timestamp to resultset in api/outputs

This would enable the caller to validate that the trade date is not older than expected.
This commit is contained in:
jmacxx 2020-08-21 19:45:20 -05:00
parent 395d8f4a61
commit f639419680
No known key found for this signature in database
GPG Key ID: 155297BABFE94A1B
1 changed files with 9 additions and 0 deletions

View File

@ -5406,6 +5406,14 @@ json_outputs(string tx_hash_str,
} // for (pair<txout_to_key, uint64_t>& outp: txd.output_pub_keys)
// if we don't already have the tx_timestamp from the mempool
// then read it from the block that the transaction is in
if (!tx_timestamp && txd.blk_height > 0) {
block blk;
mcore->get_block_by_height(txd.blk_height, blk);
tx_timestamp = blk.timestamp;
}
// return parsed values. can be use to double
// check if submited data in the request
// matches to what was used to produce response.
@ -5414,6 +5422,7 @@ json_outputs(string tx_hash_str,
j_data["viewkey"] = pod_to_hex(prv_view_key);
j_data["tx_prove"] = tx_prove;
j_data["tx_confirmations"] = txd.no_confirmations;
j_data["tx_timestamp"] = tx_timestamp;
j_response["status"] = "success";