Query changes

This commit is contained in:
shunmugam 2020-01-10 12:38:35 +05:30
parent ba23ebe939
commit 1578869e13

View File

@ -377,11 +377,13 @@ async function avgBlockTime(height,proof) {
const blockaveragetime = await getConnection(Global.network)
.query(
'SELECT coalesce(avg(bb.alter), 0) as alter FROM (SELECT EXTRACT(EPOCH FROM (timestamp - LAG(timestamp) OVER (ORDER BY timestamp))) AS alter FROM blockchain_block where height > '+(height - 1440)+' AND height < '+height+' and proof = "'+proof+'" ) as bb',
"SELECT coalesce(avg(bb.alter), 0) as alter FROM (SELECT EXTRACT(EPOCH FROM (timestamp - LAG(timestamp) OVER (ORDER BY timestamp))) AS alter FROM blockchain_block where height > "+(height - 1440)+" AND height < "+height+" and proof = '"+proof+"' ) as bb",
)
.catch(err_msg => {
return(err_msg);
});
return blockaveragetime[0]['alter']
}