Skip to content

Commit

Permalink
core/txpool/blobpool: reduce default database cap for rollout (#29090)
Browse files Browse the repository at this point in the history
xcore/txpool/blobpool: reduce default database cap for rollout
  • Loading branch information
karalabe committed Feb 26, 2024
1 parent c1f59b9 commit 63aaac8
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 63aaac8

Please sign in to comment.