I am trying to perform raw transaction in quorum , but I am getting the error:
Error: Number can only safely store up to 53 bits.
The code is,
web3.eth.sendSignedTransaction(rawTx).then(function(transactionReciept,error){
if(error){
console.log("Error occured in send Function")
callback(error,null,null);
}else{
console.log("Transaction is successfull ",transactionReciept)
transaction = JSON.stringify(transactionReciept);
});