Skip to content

Commit

Permalink
change chunks to 500
Browse files Browse the repository at this point in the history
  • Loading branch information
Brean0 committed Sep 23, 2024
1 parent 0e5a060 commit a602a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/reseed/reseed3.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function reseed3(account, L2Beanstalk, mock, verbose = false) {
// Read and parse the JSON file
const accountPlots = JSON.parse(await fs.readFileSync(farmerPlotsPath));

targetEntriesPerChunk = 800;
targetEntriesPerChunk = 500;
plotChunks = await splitEntriesIntoChunksOptimized(accountPlots, targetEntriesPerChunk);
const InitFacet = await (await ethers.getContractFactory("ReseedField", account)).deploy();
await InitFacet.deployed();
Expand Down

0 comments on commit a602a56

Please sign in to comment.