Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Update helpers.js #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 6 additions & 1 deletion src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ export async function ethCall(rawData, { id, web3, rpcUrl, block, multicallAddre
}));
function onMessage(data) {
if (typeof data !== 'string') data = data.data;
const json = JSON.parse(data);
try {
var json = JSON.parse(data);
} catch (e) {
log('Unexpected WebSocket response %s', data);
return;
}
if (!json.id || json.id !== id) return;
log('Got WebSocket response id #%d', json.id);
clearTimeout(timeoutHandle);
Expand Down