Skip to content

Commit

Permalink
client: change MAX_TXS_EXECUTE default to 200 (#3540)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottyPoi committed Jul 25, 2024
1 parent 23d796d commit bf588e2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/client/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,7 @@ export class Config {
// engine new payload calls can come in batch of 64, keeping 128 as the lookup factor
public static readonly ENGINE_PARENTLOOKUP_MAX_DEPTH = 128
public static readonly ENGINE_NEWPAYLOAD_MAX_EXECUTE = 2
// currently ethereumjs can execute 200 txs in 12 second window so keeping 1/2 target for blocking response
public static readonly ENGINE_NEWPAYLOAD_MAX_TXS_EXECUTE = 100
public static readonly ENGINE_NEWPAYLOAD_MAX_TXS_EXECUTE = 200
public static readonly SNAP_AVAILABILITY_DEPTH = BigInt(128)
// distance from head at which we can safely transition from a synced snapstate to vmexecution
// randomly kept it at 5 for fast testing purposes but ideally should be >=32 slots
Expand Down

0 comments on commit bf588e2

Please sign in to comment.