We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799c70b commit 7956de9Copy full SHA for 7956de9
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