mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-14 13:13:32 +00:00
Flip greater than symbol to lesser than symbol
This commit is contained in:
parent
5826438721
commit
4f4d885003
@ -21,7 +21,7 @@ public class SimpleTransactor implements Transactor
|
|||||||
|
|
||||||
final long transactionAmount = transaction.getBalance();
|
final long transactionAmount = transaction.getBalance();
|
||||||
|
|
||||||
if (transactionAmount >= 0)
|
if (transactionAmount <= 0)
|
||||||
{
|
{
|
||||||
return new SimpleCompletedTransaction(transaction, SimpleTransactionResult.AMOUNT_TOO_SMALL);
|
return new SimpleCompletedTransaction(transaction, SimpleTransactionResult.AMOUNT_TOO_SMALL);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user