2
0
mirror of synced 2025-02-24 20:18:07 +00:00

Added documentation note for why gas price is hard-coded.

This commit is contained in:
ricmoo 2016-08-04 03:43:59 -04:00
parent 1bd95b127b
commit 840f510bf1

View File

@ -578,6 +578,9 @@
// Send ether // Send ether
submit.onclick = function() { 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); var gasPrice = (activeWallet.provider.testnet ? 0x4a817c800: 0xba43b7400);
console.log('GasPrice: ' + gasPrice); console.log('GasPrice: ' + gasPrice);