-
Notifications
You must be signed in to change notification settings - Fork 20.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
err: gas limit reached (supplied gas 9223372036854775807) #30467
Comments
I don't see "error fetching MaxDataSize from sequencer inbox" anywhere in the prysm codebase. Additionally, the rpc call you have provided doesn't make sense in the context of eth mainnet: it is a call from the zero address to an arbitrum contract.
Edit: yes, the error looks to originate from arbitrum nitro which is meant to be coupled with Geth. |
I assume "the node responds normally" means that the |
Yes, I'm running arbitrum nitro. |
I found the bug, in the doCall method in internal/ethapi/api.go, it was previously setting AddGas as gp := new(core.GasPool).AddGas(math.MaxUint64) the new code changed to |
This bug can be bypassed by changing the run command /opt/ethmain/core/geth --config=/mnt/ethmain/conf/config.toml --rpc.gascap=9223372036854775807 --rpc.txfeecap=0 |
Experiencing similar issues. Assuming that is related to #27720 |
System information
Geth version:
1.14.9
CL client & version:
Prysm@v5.1.0
OS & Version:
Linux
Expected behaviour
eth_call returns the response normally
Actual behaviour
Steps to reproduce the behaviour
Prysm Command:
/opt/ethmain/core/beacon-chain --mainnet --chain-id=1 --network-id=1 --checkpoint-sync-url=https://sync-mainnet .beaconcha.in --execution-endpoint=http://127.0.0.1:8551 --jwt-secret=/mnt/ethmain/node/jwt.hex --datadir=/mnt/ethmain/node/prysm/beacon --enable-historical-state-representation --suggested-fee-recipient=0xcDA9D71bdfAe59b89Cee131eD3079f8AC4c77062 --http-mev-relay=http://127.0.0.1:18550 --rpc-host=0.0.0.0 --rpc-port=4000 --rpc-max-page-size=200000 --http- modules=prysm,eth --grpc-gateway-host=0.0.0.0 --grpc-gateway-port=3500 --grpc-gateway-corsdomain=* --grpc-max-msg-size=268435456 --p2p-tcp-port=13000 --p2p-udp-port=12000 --disab le-monitoring --accept-terms-of-use
Geth Command:
The version of Geth before we upgraded was 1.14.5,When I remove the
--rpc.gascap=0 --rpc.txfeecap=0
parameter, the node responds normally, but the 0 value is unlimited in meaning ah!The text was updated successfully, but these errors were encountered: