From d7c50a3d1917cd28efe240aa251abfde4771b6cb Mon Sep 17 00:00:00 2001 From: Justin Florentine Date: Wed, 27 Sep 2023 21:36:53 -0400 Subject: [PATCH] allow BLOB txs during shanghai Signed-off-by: Justin Florentine --- .../besu/ethereum/mainnet/MainnetProtocolSpecs.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/MainnetProtocolSpecs.java b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/MainnetProtocolSpecs.java index 02f757483df..5946edf4de0 100644 --- a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/MainnetProtocolSpecs.java +++ b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/MainnetProtocolSpecs.java @@ -624,7 +624,8 @@ static ProtocolSpecBuilder shanghaiDefinition( Set.of( TransactionType.FRONTIER, TransactionType.ACCESS_LIST, - TransactionType.EIP1559), + TransactionType.EIP1559, + TransactionType.BLOB), SHANGHAI_INIT_CODE_SIZE_LIMIT)) .withdrawalsProcessor(new WithdrawalsProcessor()) .withdrawalsValidator(new WithdrawalsValidator.AllowedWithdrawals())