mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
params: fix bpo config comments (#32755)
Looks like we forgot to update names when copying.
This commit is contained in:
parent
46b7e78cc0
commit
ea28346f91
1 changed files with 4 additions and 4 deletions
|
|
@ -377,25 +377,25 @@ var (
|
|||
Max: 9,
|
||||
UpdateFraction: 5007716,
|
||||
}
|
||||
// DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork.
|
||||
// DefaultBPO1BlobConfig is the default blob configuration for the BPO1 fork.
|
||||
DefaultBPO1BlobConfig = &BlobConfig{
|
||||
Target: 10,
|
||||
Max: 15,
|
||||
UpdateFraction: 8346193,
|
||||
}
|
||||
// DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork.
|
||||
// DefaultBPO2BlobConfig is the default blob configuration for the BPO2 fork.
|
||||
DefaultBPO2BlobConfig = &BlobConfig{
|
||||
Target: 14,
|
||||
Max: 21,
|
||||
UpdateFraction: 11684671,
|
||||
}
|
||||
// DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork.
|
||||
// DefaultBPO3BlobConfig is the default blob configuration for the BPO3 fork.
|
||||
DefaultBPO3BlobConfig = &BlobConfig{
|
||||
Target: 21,
|
||||
Max: 32,
|
||||
UpdateFraction: 20609697,
|
||||
}
|
||||
// DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork.
|
||||
// DefaultBPO4BlobConfig is the default blob configuration for the BPO4 fork.
|
||||
DefaultBPO4BlobConfig = &BlobConfig{
|
||||
Target: 14,
|
||||
Max: 21,
|
||||
|
|
|
|||
Loading…
Reference in a new issue