From 7f26e3142295581e261b2650b441beb1a97b7bb0 Mon Sep 17 00:00:00 2001 From: Erialos Date: Mon, 10 Oct 2022 16:05:56 -0600 Subject: [PATCH] Possible fix for fetch.js When I was looking at the code this morning, I incorrectly interpreted it's purpose. I see my issue that I had reading it this morning. Reverted back to the original. --- src/libs/fetch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/fetch.js b/src/libs/fetch.js index 1e2dbd94..7cbd9648 100644 --- a/src/libs/fetch.js +++ b/src/libs/fetch.js @@ -62,7 +62,7 @@ export default class ChainFetch { async getLatestBlock(config = null) { const conf = config || this.getSelectedConfig() const ver = conf.sdk_version || '0.41' - if (ver < 1 && compareVersions(ver, '0.45') < 1) { + if (ver && compareVersions(ver, '0.45') < 1) { return this.get('/blocks/latest', config).then(data => Block.create(data)) } return this.get('/cosmos/base/tendermint/v1beta1/blocks/latest', config).then(data => Block.create(data)) @@ -71,7 +71,7 @@ export default class ChainFetch { async getBlockByHeight(height, config = null) { const conf = config || this.getSelectedConfig() const ver = conf.sdk_version || '0.41' - if (ver < 1 && compareVersions(ver, '0.45') < 1) { + if (ver && compareVersions(ver, '0.45') < 1) { return this.get(`/blocks/${height}`, config).then(data => Block.create(data)) } return this.get(`/cosmos/base/tendermint/v1beta1/blocks/${height}`, config).then(data => Block.create(data))