You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/standard/config.rs
+14-3
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,8 @@ pub struct Config {
103
103
pubeip_5656_enabled:bool,
104
104
/// Uses EIP-1559 (Base fee is burned when this flag is enabled) [EIP-1559](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1559.md)
105
105
pubeip_1559_enabled:bool,
106
+
/// Selfdestruct deletet contract only if called in the same tx as creation [EIP-6780](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-6780.md)
107
+
pubsuicide_only_in_same_tx:bool,
106
108
}
107
109
108
110
implConfig{
@@ -159,6 +161,7 @@ impl Config {
159
161
eip_1153_enabled:false,
160
162
eip_5656_enabled:false,
161
163
eip_1559_enabled:false,
164
+
suicide_only_in_same_tx:false,
162
165
}
163
166
}
164
167
@@ -215,6 +218,7 @@ impl Config {
215
218
eip_1153_enabled:false,
216
219
eip_5656_enabled:false,
217
220
eip_1559_enabled:false,
221
+
suicide_only_in_same_tx:false,
218
222
}
219
223
}
220
224
@@ -257,6 +261,7 @@ impl Config {
257
261
eip_1153_enabled,
258
262
eip_5656_enabled,
259
263
eip_1559_enabled,
264
+
suicide_only_in_same_tx,
260
265
} = inputs;
261
266
262
267
// See https://eips.ethereum.org/EIPS/eip-2929
@@ -322,6 +327,7 @@ impl Config {
322
327
eip_1153_enabled,
323
328
eip_5656_enabled,
324
329
eip_1559_enabled,
330
+
suicide_only_in_same_tx,
325
331
}
326
332
}
327
333
}
@@ -344,6 +350,7 @@ struct DerivedConfigInputs {
344
350
eip_1153_enabled:bool,
345
351
eip_5656_enabled:bool,
346
352
eip_1559_enabled:bool,
353
+
suicide_only_in_same_tx:bool,
347
354
}
348
355
349
356
implDerivedConfigInputs{
@@ -361,6 +368,7 @@ impl DerivedConfigInputs {
361
368
eip_1153_enabled:false,
362
369
eip_5656_enabled:false,
363
370
eip_1559_enabled:false,
371
+
suicide_only_in_same_tx:false,
364
372
}
365
373
}
366
374
@@ -378,6 +386,7 @@ impl DerivedConfigInputs {
378
386
eip_1153_enabled:false,
379
387
eip_5656_enabled:false,
380
388
eip_1559_enabled:true,
389
+
suicide_only_in_same_tx:false,
381
390
}
382
391
}
383
392
@@ -395,6 +404,7 @@ impl DerivedConfigInputs {
395
404
eip_1153_enabled:false,
396
405
eip_5656_enabled:false,
397
406
eip_1559_enabled:true,
407
+
suicide_only_in_same_tx:false,
398
408
}
399
409
}
400
410
@@ -413,9 +423,9 @@ impl DerivedConfigInputs {
413
423
eip_1153_enabled:false,
414
424
eip_5656_enabled:false,
415
425
eip_1559_enabled:true,
426
+
suicide_only_in_same_tx:false,
416
427
}
417
428
}
418
-
419
429
constfncancun() -> Self{
420
430
Self{
421
431
gas_storage_read_warm:100,
@@ -428,9 +438,10 @@ impl DerivedConfigInputs {
428
438
warm_coinbase_address:true,
429
439
// 2 * (MAX_CODE_SIZE = `24576`) = (0xC000 = 49152) as per EIP-3860
0 commit comments