From 840f510bf1e501658a5727901f21ec55497098f3 Mon Sep 17 00:00:00 2001 From: ricmoo Date: Thu, 4 Aug 2016 03:43:59 -0400 Subject: [PATCH] Added documentation note for why gas price is hard-coded. --- examples/wallet/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/wallet/index.html b/examples/wallet/index.html index 1490255f..868316a4 100644 --- a/examples/wallet/index.html +++ b/examples/wallet/index.html @@ -578,6 +578,9 @@ // Send ether submit.onclick = function() { + + // Matt (from Etherscan) is working on a gasPrice API call, which + // should be done within a week or so. var gasPrice = (activeWallet.provider.testnet ? 0x4a817c800: 0xba43b7400); console.log('GasPrice: ' + gasPrice);