Skip to content

Commit de8973e

Browse files
committed
chore(tools): remove unused ForkLoad props
1 parent d62f21c commit de8973e

File tree

1 file changed

+0
-40
lines changed

1 file changed

+0
-40
lines changed

src/ethereum_spec_tools/evm_tools/loaders/fork_loader.py

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,6 @@ def state_transition(self) -> Any:
109109
"""state_transition function of the fork."""
110110
return self._module("fork").state_transition
111111

112-
@property
113-
def pay_rewards(self) -> Any:
114-
"""pay_rewards function of the fork."""
115-
return self._module("fork").pay_rewards
116-
117112
@property
118113
def signing_hash(self) -> Any:
119114
"""signing_hash function of the fork."""
@@ -159,11 +154,6 @@ def process_transaction(self) -> Any:
159154
"""process_transaction function of the fork."""
160155
return self._module("fork").process_transaction
161156

162-
@property
163-
def MAX_BLOB_GAS_PER_BLOCK(self) -> Any:
164-
"""MAX_BLOB_GAS_PER_BLOCK parameter of the fork."""
165-
return self._module("fork").MAX_BLOB_GAS_PER_BLOCK
166-
167157
@property
168158
def Block(self) -> Any:
169159
"""Block class of the fork."""
@@ -239,11 +229,6 @@ def Withdrawal(self) -> Any:
239229
"""Withdrawal class of the fork."""
240230
return self._module("blocks").Withdrawal
241231

242-
@property
243-
def encode_transaction(self) -> Any:
244-
"""encode_transaction function of the fork."""
245-
return self._module("transactions").encode_transaction
246-
247232
@property
248233
def decode_transaction(self) -> Any:
249234
"""decode_transaction function of the fork."""
@@ -319,31 +304,6 @@ def Authorization(self) -> Any:
319304
"""Authorization class of the fork."""
320305
return self._module("fork_types").Authorization
321306

322-
@property
323-
def TARGET_BLOB_GAS_PER_BLOCK(self) -> Any:
324-
"""TARGET_BLOB_GAS_PER_BLOCK of the fork."""
325-
return self._module("vm.gas").TARGET_BLOB_GAS_PER_BLOCK
326-
327-
@property
328-
def GAS_PER_BLOB(self) -> Any:
329-
"""GAS_PER_BLOB of the fork."""
330-
return self._module("vm.gas").GAS_PER_BLOB
331-
332-
@property
333-
def BLOB_BASE_COST(self) -> Any:
334-
"""BLOB_BASE_COST of the fork."""
335-
return self._module("vm.gas").BLOB_BASE_COST
336-
337-
@property
338-
def BLOB_SCHEDULE_MAX(self) -> Any:
339-
"""BLOB_SCHEDULE_MAX of the fork."""
340-
return self._module("vm.gas").BLOB_SCHEDULE_MAX
341-
342-
@property
343-
def BLOB_SCHEDULE_TARGET(self) -> Any:
344-
"""BLOB_SCHEDULE_TARGET of the fork."""
345-
return self._module("vm.gas").BLOB_SCHEDULE_TARGET
346-
347307
@property
348308
def calculate_excess_blob_gas(self) -> Any:
349309
"""calculate_excess_blob_gas of the fork."""

0 commit comments

Comments
 (0)