Skip to content

Commit

Permalink
core/txpool/blobpool: reduce default database cap for rollout (ethere…
Browse files Browse the repository at this point in the history
…um#29090)

xcore/txpool/blobpool: reduce default database cap for rollout
  • Loading branch information
karalabe authored and zfy0701 committed Mar 24, 2024
1 parent 799c70b commit 7956de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/txpool/blobpool/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ type Config struct {
// DefaultConfig contains the default configurations for the transaction pool.
var DefaultConfig = Config{
Datadir: "blobpool",
Datacap: 10 * 1024 * 1024 * 1024,
PriceBump: 100, // either have patience or be aggressive, no mushy ground
Datacap: 10 * 1024 * 1024 * 1024 / 4, // TODO(karalabe): /4 handicap for rollout, gradually bump back up to 10GB
PriceBump: 100, // either have patience or be aggressive, no mushy ground
}

// sanitize checks the provided user configurations and changes anything that's
Expand Down

0 comments on commit 7956de9

Please sign in to comment.