diff --git a/src/ethereum/cancun/__init__.py b/src/ethereum/cancun/__init__.py index 25b79e6b0d..35e009524f 100644 --- a/src/ethereum/cancun/__init__.py +++ b/src/ethereum/cancun/__init__.py @@ -1,8 +1,8 @@ """ -Ethereum Cancun Hardfork -^^^^^^^^^^^^^^^^^^^^^^^^^^ - -The Fifteenth Ethereum hardfork. +The Cancun fork introduces transient storage, exposes beacon chain roots, +introduces a new blob-carrying transaction type, adds a memory copying +instruction, limits self-destruct to only work for contracts created in the +same transaction, and adds an instruction to read the blob base fee. """ from ethereum.fork_criteria import Unscheduled diff --git a/src/ethereum/cancun/utils/__init__.py b/src/ethereum/cancun/utils/__init__.py index 6d52f578e5..224a4d269b 100644 --- a/src/ethereum/cancun/utils/__init__.py +++ b/src/ethereum/cancun/utils/__init__.py @@ -1,13 +1,3 @@ """ -Hardfork Utility Functions -^^^^^^^^^^^^^^^^^^^^^^^^^^ - -.. contents:: Table of Contents - :backlinks: none - :local: - -Introduction ------------- - -Utility functions used in this cancun version of specification. +Utility functions unique to this particular fork. """