polkadot-evm / frontier

Ethereum compatibility layer for Substrate.
Apache License 2.0
550 stars 455 forks source link

Incorrect gas estimation for certain input #1302

Open Dinonard opened 4 months ago

Dinonard commented 4 months ago

Overview

This is essentially a C/P of the issue opened here: https://github.com/AstarNetwork/Astar/issues/1180 It's happening on Astar which is still running on relatively old frontier and polkadot-sdk (pre-sdk) dependencies but I haven't found any recent PRs or commits that would cover the fix.

It has been observed that gas estimation will return incorrect value when provided with certain inputs. Once transaction is submitted with the estimated value, it will fail with OutOfGas error.

Details

The function of interest is the following one:

  /// Minted vNative assets such as vASTR, vGLMR, vMOVR
  function mintVNativeAsset(
      address receiver,
      string memory remark
  ) external payable;

The received address isn't important, but depending on the string remark value, the gas estimate will be correct or incorrect. It's worth mentioning that remark is only emitted as part of an event, and put inside another subcall's blob (precompile call to XCM transact), and has no effect on logic execution.

When Hello is used as remark value, the gas estimate will be around 167k. When Hell is used, the gas estimate will be around 180k.

For some reason, adding an 'o' will cause the estimate to drop significantly. And if call is submitted, as mentioned before, it will fail with OutOfGas error.

The following example can be replicated on any Astar node (current version is astar-80) by using eth.gasEstimate RPC call.

One example of the data for the call:

boundless-forest commented 4 months ago

Your case is very similar to one that occurs in the Darwinia network. Fixed patches have been submitted https://github.com/polkadot-evm/frontier/pull/1239, https://github.com/polkadot-evm/frontier/pull/1257. Suggest you upgrade your frontier to cover these patches and have a try.

Dinonard commented 4 months ago

Your case is very similar to one that occurs in the Darwinia network. Fixed patches have been submitted #1239, #1257. Suggest you upgrade your frontier to cover these patches and have a try.

Hi @boundless-forest, thanks for the reply!

I did find your issues before posting my own, but assumed they probably aren't connected. My guess regarding my issue, given how I can make it work or fail by simply changing the string argument, is that decoding of the input data is done incorrectly somewhere, resulting in reduced gas estimate.

Right now we are uplifting to newer versions of polkadot-sdk and frontier so I hope to be able to test it out soon.