I am using Quorum (geth) private blockchain and I am sporadically getting the following error:
Error: Number can only safely store up to 53 bits
with the following code (using web3):
let contractInstance = await contract
.deploy({
data: data
})
.send({
from: address,
gas: 6721975,
gasPrice: 0
});