We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ignoreGasPricing flag is not considered while using local wallet.
ignoreGasPricing
With following scenario:
const web3 = new Web3(new HttpProvider("http://127.0.0.1:8080")); const tx = { "from": "0x801040E2965D0cf9d73FEe4ccc8eEA9eeBbC491e", "to": "0x6Eb893e3466931517a04a17D153a6330c3f2f1dD", "nonce": 648, "gasLimit": "0x9d", "maxFeePerGas": "0x346d9246", "maxPriorityFeePerGas": "0x2c7e63", "data": "0x889e365e59664fb881554ba1175519b5195b1d20390beb806d8f2cda7893e6f79848195dba4c905db6d7257ffb5eefea35f18ae33c", "value": "0xc854", "accessList": [], "chainId": "0x8404bf1f" }; web3.eth.wallet?.add(privateKey); const k = await web3.eth.sendTransaction(tx,DEFAULT_RETURN_FORMAT, {ignoreGasPricing: true,checkRevertBeforeSending:false}, );
getTransactionGasPricing is called in defaultTransactionBuilder even it was called earlier inside sendTransaction or not called earlier regardless of that,.
getTransactionGasPricing
The text was updated successfully, but these errors were encountered:
@spacesailor24 This bug's fix is proposed in #6071 for making some tests to pass in 6071
Sorry, something went wrong.
jdevcs
No branches or pull requests
ignoreGasPricing
flag is not considered while using local wallet.With following scenario:
getTransactionGasPricing
is called in defaultTransactionBuilder even it was called earlier inside sendTransaction or not called earlier regardless of that,.The text was updated successfully, but these errors were encountered: