mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-08-01 21:54:03 +00:00
Flip greater than symbol to lesser than symbol
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user