You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (string.IsNullOrEmpty(this.Password)) { this.Alert="Please enter a password"; return; }
226
226
if (string.IsNullOrEmpty(this.Address)) { this.Alert="Please enter a valid address"; return; }
227
227
if (this.Amount==0) { this.Alert="Please enter the number of coins you want to send"; return; }
228
-
if (this.Fee<this.ConnectionManager.Network.MinTxFee) { this.Alert=$"The fee is lower than minimum ({this.ConnectionManager.Network.MinTxFee})"; return; }
228
+
if (this.Fee<Money.Satoshis(this.ConnectionManager.Network.MinTxFee).ToDecimal(MoneyUnit.BTC)) { this.Alert=$"The fee is lower than minimum ({Money.Satoshis(this.ConnectionManager.Network.MinTxFee).ToDecimal(MoneyUnit.BTC)})"; return; }
0 commit comments