Skip to content

Commit

Permalink
fix: remove adjustments limit (#12826)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Tinker <[email protected]>
Co-authored-by: Michael Heinrichs <[email protected]>
  • Loading branch information
tinker-michaelj and netopyr authored Apr 16, 2024
1 parent 19e0ff1 commit e3f73c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class CurrencyAdjustments implements SelfSerializable {
static final long RUNTIME_CONSTRUCTABLE_ID = 0xd8b06bd46e12a466L;

private static final long[] NO_ADJUSTMENTS = new long[0];
static final int MAX_NUM_ADJUSTMENTS = 25;
static final int MAX_NUM_ADJUSTMENTS = Integer.MAX_VALUE;

long[] hbars = NO_ADJUSTMENTS;
long[] accountNums = NO_ADJUSTMENTS;
Expand Down

0 comments on commit e3f73c3

Please sign in to comment.