From 8a96c38ba6c7cb4ca537a99b112586e815f6d616 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Fri, 30 Aug 2024 12:36:20 +0200 Subject: [PATCH] Update EIP-6493: Fix `Optional` specification for signature profile Merged by EIP-Bot. --- EIPS/eip-6493.md | 4 ++-- assets/eip-6493/ssz_types.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/EIPS/eip-6493.md b/EIPS/eip-6493.md index 466c36eba1304..efaa77682a71f 100644 --- a/EIPS/eip-6493.md +++ b/EIPS/eip-6493.md @@ -148,8 +148,8 @@ class BlobFeesPerGas(Profile[FeesPerGas]): blob: FeePerGas class EcdsaTransactionSignature(Profile[TransactionSignature]): - from_: Optional[ExecutionAddress] - ecdsa_signature: Optional[ByteVector[ECDSA_SIGNATURE_SIZE]] + from_: ExecutionAddress + ecdsa_signature: ByteVector[ECDSA_SIGNATURE_SIZE] class ReplayableTransactionPayload(Profile[TransactionPayload]): type_: TransactionType diff --git a/assets/eip-6493/ssz_types.py b/assets/eip-6493/ssz_types.py index 25ac152f09185..150dac235f73c 100644 --- a/assets/eip-6493/ssz_types.py +++ b/assets/eip-6493/ssz_types.py @@ -92,8 +92,8 @@ class BlobFeesPerGas(Profile[FeesPerGas]): blob: FeePerGas class EcdsaTransactionSignature(Profile[TransactionSignature]): - from_: Optional[ExecutionAddress] - ecdsa_signature: Optional[ByteVector[ECDSA_SIGNATURE_SIZE]] + from_: ExecutionAddress + ecdsa_signature: ByteVector[ECDSA_SIGNATURE_SIZE] class ReplayableTransactionPayload(Profile[TransactionPayload]): type_: TransactionType