test_bal_nested_delegatecall_storage_writes_net_zero()¶
Documentation for tests/amsterdam/eip7928_block_level_access_lists/test_block_access_lists.py::test_bal_nested_delegatecall_storage_writes_net_zero@21507778.
Generate fixtures for these test cases for Amsterdam with:
fill -v tests/amsterdam/eip7928_block_level_access_lists/test_block_access_lists.py::test_bal_nested_delegatecall_storage_writes_net_zero --fork Amsterdam
Test BAL correctly handles nested DELEGATECALL frames where intermediate frames write different values but the deepest frame reverts to original.
Each nesting level writes a different intermediate value, and the deepest frame writes back the original value, resulting in net-zero change.
Example for depth=2 (intermediate_values=[2, 3]): - Pre-state: slot 0 = 1 - Root frame writes: slot 0 = 2 - Child frame writes: slot 0 = 3 - Grandchild frame writes: slot 0 = 1 (back to original) - Expected: No storage_changes (net-zero overall)
Source code in tests/amsterdam/eip7928_block_level_access_lists/test_block_access_lists.py
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 | |
Parametrized Test Cases¶
This test generates 3 parametrized test cases across 1 fork.