Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #613 from NebulousLabs/hostprice-minimum
Browse files Browse the repository at this point in the history
lower minimum host collateral warning
  • Loading branch information
lukechampine authored May 21, 2017
2 parents d42e083 + 5409ab8 commit 7ae6d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/Hosting/js/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const Header = ({ numContracts, earned, expected, walletsize, walletLocked, work
<div className="pod" id="expected">{expected} SC expected</div>
</div>
{
(new BigNumber(walletsize)).lessThan('20000') && !walletLocked ?
<WarningBar title="Wallet balance too low." message="You must have at least 20,000 SC to host files." />
(new BigNumber(walletsize)).lessThan('2000') && !walletLocked ?
<WarningBar title="Wallet balance too low." message="You must have at least 2,000 SC to host files." />
: null
}
</header>
Expand Down

0 comments on commit 7ae6d79

Please sign in to comment.