use of com.radixdlt.store.StoreConfig in project radixdlt by radixdlt.
the class BerkeleyLedgerEntryStoreTest method setup.
@Before
public void setup() throws IOException {
dir = new TemporaryFolder();
dir.create();
sut = new BerkeleyLedgerEntryStore(DefaultSerialization.getInstance(), new DatabaseEnvironment(dir.getRoot().getAbsolutePath(), (long) (Runtime.getRuntime().maxMemory() * 0.125)), new StoreConfig(1000), new SystemCountersImpl(0L), Set.of());
}
Aggregations