mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-06-26 19:44:27 +00:00
Refactor arithmetic operations in EconomicEntityData to be more in-line with Transaction
This commit is contained in:
@ -6,9 +6,9 @@ public interface EconomicEntityData
|
||||
|
||||
long getBalance();
|
||||
|
||||
void addToBalance(final long amount);
|
||||
long addToBalance(final long amount);
|
||||
|
||||
void removeFromBalance(final long amount);
|
||||
long removeFromBalance(final long amount);
|
||||
|
||||
void setBalance(final long newBalance);
|
||||
}
|
||||
|
Reference in New Issue
Block a user