Skip to content

Commit

Permalink
feat(protocol): update PlonkVerifier for A6 (#15388)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Dec 17, 2023
1 parent cc2b66c commit a510639
Show file tree
Hide file tree
Showing 5 changed files with 604 additions and 133 deletions.
4 changes: 1 addition & 3 deletions packages/protocol/contracts/L1/libs/LibDepositing.sol
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,7 @@ library LibDepositing {
if (numPending < config.ethDepositMinCountPerBlock) {
deposits = new TaikoData.EthDeposit[](0);
} else {
deposits = new TaikoData.EthDeposit[](
numPending.min(config.ethDepositMaxCountPerBlock)
);
deposits = new TaikoData.EthDeposit[](numPending.min(config.ethDepositMaxCountPerBlock));
uint96 fee = uint96(config.ethDepositMaxFee.min(block.basefee * config.ethDepositGas));
uint64 j = state.slotA.nextEthDepositToProcess;
uint96 totalFee;
Expand Down
Loading

0 comments on commit a510639

Please sign in to comment.