Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Token summary not updated when using HTTP API #2049

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions services/blockchain-connector/shared/sdk/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Loading