diff --git a/services/blockchain-connector/shared/sdk/events.js b/services/blockchain-connector/shared/sdk/events.js index 6e8b025b6..9afacf788 100644 --- a/services/blockchain-connector/shared/sdk/events.js +++ b/services/blockchain-connector/shared/sdk/events.js @@ -71,6 +71,7 @@ const emitEngineEvents = async () => { lastBlockHeightEvent = height; const newBlock = await getBlockByHeight(height); Signals.get(EVENT_CHAIN_BLOCK_NEW).dispatch({ blockHeader: newBlock.header }); + await updateTokenInfo().catch(err => logError('updateTokenInfo', err)); if ((height - genesisHeight) % roundLength === 1) { const bftParameters = await getBFTParameters(height);