From 00c23d1ece9f23b600d4cfe77efab90285741cc2 Mon Sep 17 00:00:00 2001 From: Jeffery Walsh Date: Thu, 29 Jun 2023 18:29:27 -0700 Subject: [PATCH] Fix tests, were using old config --- packages/protocol/test/TaikoL1TestBase.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/protocol/test/TaikoL1TestBase.t.sol b/packages/protocol/test/TaikoL1TestBase.t.sol index 3c41f185867..910923f67f0 100644 --- a/packages/protocol/test/TaikoL1TestBase.t.sol +++ b/packages/protocol/test/TaikoL1TestBase.t.sol @@ -306,8 +306,8 @@ abstract contract TaikoL1TestBase is Test { // Also hash configs that will be used by circuits inputs[9] = uint256(config.blockMaxGasLimit) << 192 - | uint256(config.maxTransactionsPerBlock) << 128 - | uint256(config.maxBytesPerTxList) << 64; + | uint256(config.blockMaxTransactions) << 128 + | uint256(config.blockMaxTxListBytes) << 64; assembly { instance := keccak256(inputs, mul(32, 10))