Remove unused var

Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
HenrikJannsen 2022-12-09 10:53:46 -05:00
parent d12c8b5fc4
commit adb02428ee
No known key found for this signature in database
GPG key ID: 02AA2BAE387C8307

View file

@ -32,7 +32,6 @@ public class BurningManServiceTest {
long amount = 100;
int currentBlockHeight = 1400;
int fromBlockHeight = 1000;
int heightOfFirstBlockOfCurrentCycle = 1400;
assertEquals(0, BurningManService.getDecayedAmount(amount, 1000, currentBlockHeight, fromBlockHeight));
assertEquals(25, BurningManService.getDecayedAmount(amount, 1100, currentBlockHeight, fromBlockHeight));
assertEquals(50, BurningManService.getDecayedAmount(amount, 1200, currentBlockHeight, fromBlockHeight));