diff --git a/dist.zip b/dist.zip index 36fb13b96..fee4f5bca 100644 Binary files a/dist.zip and b/dist.zip differ diff --git a/js/page/wallet.js b/js/page/wallet.js index 15978c96f..cf43309f2 100644 --- a/js/page/wallet.js +++ b/js/page/wallet.js @@ -24,12 +24,7 @@ var NewAddressSection = React.createClass({ var SendToAddressSection = React.createClass({ sendToAddress: function() { - if (this.state.amount > this.state.balance) - { - alert("The amount you're trying to send is greater than the number of credits in your wallet."); - return; - } - else if ((this.state.balance - this.state.amount) < 1) + if ((this.state.balance - this.state.amount) < 1) { alert("Insufficient balance: after this transaction you would have less than 1 LBC in your wallet.") return;