From 92303cbc47ed065d3e7999bb036860258e05ccc5 Mon Sep 17 00:00:00 2001 From: sairajzero Date: Sat, 13 May 2023 18:18:23 +0530 Subject: [PATCH] floBlockchainAPI v2.5.6b: bug fix --- floBlockchainAPI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/floBlockchainAPI.js b/floBlockchainAPI.js index 460775b..6fec5b8 100644 --- a/floBlockchainAPI.js +++ b/floBlockchainAPI.js @@ -1,4 +1,4 @@ -(function (EXPORTS) { //floBlockchainAPI v2.5.6a +(function (EXPORTS) { //floBlockchainAPI v2.5.6b /* FLO Blockchain Operator to send/receive data from blockchain using API calls*/ 'use strict'; const floBlockchainAPI = EXPORTS; @@ -843,7 +843,7 @@ query_params.to = options.to; } if (!isUndefined(options.latest)) - query_params.latest = latest; + query_params.latest = options.latest; if (!isUndefined(options.mempool)) query_params.mempool = options.mempool; promisedAPI(api, query_params)