-
Notifications
You must be signed in to change notification settings - Fork 860
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add asMap for blobSchedule so it appears in admin_nodeInfo - Prememptively add OsakaTargetingGasLimitCalculator and wire in the max blob count Add blobschedule to mainnet.json to be explicit, since the code will default to the same values anyway Signed-off-by: Simon Dudley <[email protected]>
- Loading branch information
Showing
7 changed files
with
169 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...src/main/java/org/hyperledger/besu/ethereum/mainnet/OsakaTargetingGasLimitCalculator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright contributors to Hyperledger Besu. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package org.hyperledger.besu.ethereum.mainnet; | ||
|
||
import org.hyperledger.besu.ethereum.mainnet.feemarket.BaseFeeMarket; | ||
|
||
public class OsakaTargetingGasLimitCalculator extends PragueTargetingGasLimitCalculator { | ||
|
||
/** The mainnet default maximum number of blobs per block for Osaka */ | ||
private static final int DEFAULT_MAX_BLOBS_PER_BLOCK_OSAKA = 12; | ||
|
||
public OsakaTargetingGasLimitCalculator( | ||
final long londonForkBlock, final BaseFeeMarket feeMarket) { | ||
super(londonForkBlock, feeMarket, DEFAULT_MAX_BLOBS_PER_BLOCK_OSAKA); | ||
} | ||
|
||
/** | ||
* Using Osaka mainnet default of 12 blobs for maxBlobsPerBlock: | ||
* CancunGasCalculator.BLOB_GAS_PER_BLOB * 9 blobs = 131072 * 12 = 1572864 = 0x180000 | ||
*/ | ||
public OsakaTargetingGasLimitCalculator( | ||
final long londonForkBlock, final BaseFeeMarket feeMarket, final int maxBlobsPerBlock) { | ||
super(londonForkBlock, feeMarket, maxBlobsPerBlock); | ||
} | ||
} |