test_value_contract_creation_tx()¶
Documentation for tests/amsterdam/eip2780_reduce_intrinsic_tx_gas/test_value_moving_transactions.py::test_value_contract_creation_tx@a9abd46e.
Generate fixtures for these test cases for Amsterdam with:
fill -v tests/amsterdam/eip2780_reduce_intrinsic_tx_gas/test_value_moving_transactions.py::test_value_contract_creation_tx --fork Amsterdam
Test value moving contract creation transactions.
When the init code succeeds, the contract is deployed with the
transferred value and the receipt's gas_used equals the
intrinsic plus the execution gas.
When the init code reverts, the deploy is rolled back: no code is
set, the value transfer is reversed, and the intrinsic
NEW_ACCOUNT state-gas charge is refilled to the reservoir.
Under the default zero state-gas reservoir, the refill cancels
the spilled-to-regular portion of the intrinsic exactly, so the
sender pays only the regular portion of the intrinsic plus the
few EVM gas units spent before the revert.
Source code in tests/amsterdam/eip2780_reduce_intrinsic_tx_gas/test_value_moving_transactions.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | |
Parametrized Test Cases¶
This test generates 4 parametrized test cases across 1 fork.