Skip to content

Commit

Permalink
Merge pull request #521 from urbit/m/gas-price-limit
Browse files Browse the repository at this point in the history
constants: (nearly) limitless suggested gas price
  • Loading branch information
Fang- authored Aug 20, 2020
2 parents 7a24d7c + e48baa6 commit e770cf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/NeedFundsNotice.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export default function NeedFundsNotice({
<Highlighted warning>
Your ownership address <CopiableAddress>{address}</CopiableAddress>{' '}
needs at least {safeFromWei(minBalance)} ETH and currently has{' '}
{safeFromWei(balance)} ETH. The transaction will automatically resume
{safeFromWei(balance)} ETH. Transaction costs may be high due to{' '}
Ethereum network activity. You can come back later to try again, or{' '}
transfer the required ETH now. The transaction will automatically resume{' '}
once enough ETH is available. Waiting... <Blinky />
</Highlighted>
</WarningBox>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { isDevelopment } from './flags';

const CHECK_BLOCK_EVERY_MS = isDevelopment ? 1000 : 10000;
const DEFAULT_GAS_PRICE_GWEI = 40;
const MAX_GAS_PRICE_GWEI = 80;
const MAX_GAS_PRICE_GWEI = 400;

const MIN_GALAXY = 0;
const MAX_GALAXY = 255;
Expand Down

0 comments on commit e770cf1

Please sign in to comment.