From 113bfdda22444d3385b4820f9796758579cf7002 Mon Sep 17 00:00:00 2001 From: Marek Wester Date: Fri, 28 Jun 2019 15:20:11 +0200 Subject: [PATCH] Added missing words The sentence was incomplete. --- docs/web3-eth-contract.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web3-eth-contract.rst b/docs/web3-eth-contract.rst index 483288fe864..bcaa921e19d 100644 --- a/docs/web3-eth-contract.rst +++ b/docs/web3-eth-contract.rst @@ -624,7 +624,7 @@ methods.myMethod.estimateGas myContract.methods.myMethod([param1[, param2[, ...]]]).estimateGas(options[, callback]) -Will call estimate the gas a method execution will take when executed in the EVM without. +Will call estimate the gas a method execution will take when executed in the EVM without sending a transaction. The estimation can differ from the actual gas used when later sending a transaction, as the state of the smart contract can be different at that time. ----------