You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
In web3-core-helpers/src/formatters.js, line no. 220,
block.timestamp = utils.hexToNumber(block.timestamp);
the conversion from hex to Number throws an error, "Error in parsing....."
To fix this,
block.timestamp = utils.hexToNumberString(block.timestamp);
I think this change should be made into the repo.
The text was updated successfully, but these errors were encountered:
@nivida I tried to reproduce this bug. But, I think this problem is not with geth or ganache. This can be with Quorum.
You can close this ticket and can tag Duplicate of #1215.
In web3-core-helpers/src/formatters.js, line no. 220,
block.timestamp = utils.hexToNumber(block.timestamp);
the conversion from hex to Number throws an error, "Error in parsing....."
To fix this,
block.timestamp = utils.hexToNumberString(block.timestamp);
I think this change should be made into the repo.
The text was updated successfully, but these errors were encountered: