From 1578869e136c879285e06cfec1bcdc4ed6914751 Mon Sep 17 00:00:00 2001 From: shunmugam Date: Fri, 10 Jan 2020 12:38:35 +0530 Subject: [PATCH] Query changes --- server/utils/common.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/utils/common.ts b/server/utils/common.ts index 7c941e0..d817c9d 100644 --- a/server/utils/common.ts +++ b/server/utils/common.ts @@ -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'] }