我正在尝试在 quorum 中执行原始事务,但出现错误:
错误:数字最多只能安全存储 53 位。
请帮忙。
守则是,
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);
});