We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1f59b9 commit 63aaac8Copy full SHA for 63aaac8
core/txpool/blobpool/config.go
@@ -30,8 +30,8 @@ type Config struct {
30
// DefaultConfig contains the default configurations for the transaction pool.
31
var DefaultConfig = Config{
32
Datadir: "blobpool",
33
- Datacap: 10 * 1024 * 1024 * 1024,
34
- 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
35
}
36
37
// sanitize checks the provided user configurations and changes anything that's
0 commit comments