aboutsummaryrefslogtreecommitdiffstats
path: root/packages/base-contract
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base-contract')
-rw-r--r--packages/base-contract/src/index.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/base-contract/src/index.ts b/packages/base-contract/src/index.ts
index d9e28f9f2..02a9e29b8 100644
--- a/packages/base-contract/src/index.ts
+++ b/packages/base-contract/src/index.ts
@@ -79,8 +79,13 @@ export class BaseContract {
// Awaiting https://github.com/Microsoft/TypeScript/pull/13288 to be merged
} as any;
if (_.isUndefined(txDataWithDefaults.gas) && !_.isUndefined(estimateGasAsync)) {
+ // TODO(albrow): Move this code into a subprovider which we only
+ // use for Geth.
const estimatedGas = await estimateGasAsync(txData);
- txDataWithDefaults.gas = estimatedGas;
+ // console.log(`original estimate: ${estimatedGas}`);
+ const buffered = Math.ceil(estimatedGas * 1.1);
+ // console.log(`buffered estimate: ${buffered}`);
+ txDataWithDefaults.gas = buffered;
}
return txDataWithDefaults;
}