Increase MAX_ACCOUNT_COUNT to 5000 (around 0.5MB of data) to see if it helps with minting efficiency.

This commit is contained in:
CalDescent 2022-01-21 16:11:21 +00:00
parent d105613e51
commit b30445c5f8

View File

@ -15,7 +15,7 @@ import com.google.common.primitives.Ints;
import com.google.common.primitives.Longs;
public class OnlineAccountsMessage extends Message {
private static final int MAX_ACCOUNT_COUNT = 1000;
private static final int MAX_ACCOUNT_COUNT = 5000;
private List<OnlineAccountData> onlineAccounts;