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
I had a failed to estimate gas when I called CreateClient.
The cause is both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified here is the log.
{"time":"2024-04-25T20:00:12.83226+09:00","level":"ERROR","source":{"function":"github.com/hyperledger-labs/yui-relayer/log.(*RelayLogger).Error","file":"/Users/yoshidan/go/pkg/mod/github.com/hyperledger-labs/yui-relayer@v0.4.22/log/slog.go","line":72},"msg":"failed to estimate gas","module":"ethereum.chain","chain_id":"ibc0","error":"both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified","stack":"both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified\n(1) attached stack trace\
I had a
failed to estimate gas
when I called CreateClient.The cause is
both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified
here is the log.ethereum-ibc-relay-chain/pkg/relay/ethereum/tx.go
Line 50 in 7a84862
In ethereum, this is thought to occur here.
https://github.com/ethereum/go-ethereum/blob/b20b4a71598481443d60b261d3e5dcb37f8a0d82/internal/ethapi/transaction_args.go#L137
The reason is that
gasPrice
andgasTipCap
andgasFeeCap
of the returnedtx
fromSendTx
is not null.Environment
Chain
Module
The text was updated successfully, but these errors were encountered: