flags: bump default value of db.size.limit to 12TB (#8889)

As per the
[comment](https://github.com/ledgerwatch/erigon/pull/8869#issuecomment-1836645516)
in PR #8869, 8 TB is actually not enough for Polygon.
This commit is contained in:
Andrew Ashikhmin 2023-12-04 11:56:30 +01:00 committed by GitHub
parent b376d3cabf
commit fcb9fce5d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -746,7 +746,7 @@ var (
DbSizeLimitFlag = cli.StringFlag{
Name: "db.size.limit",
Usage: "Runtime limit of chaindata db size. You can change value of this flag at any time.",
Value: (8 * datasize.TB).String(),
Value: (12 * datasize.TB).String(),
}
ForcePartialCommitFlag = cli.BoolFlag{
Name: "force.partial.commit",