Skip to content

Commit

Permalink
refactor: remove unused signature validation method from Transaction_…
Browse files Browse the repository at this point in the history
…Core class
  • Loading branch information
John0n1 committed Jan 24, 2025
1 parent d1c1833 commit 63865d1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions python/transaction_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,6 @@ async def _load_erc20_abi(self) -> List[Dict[str, Any]]:
logger.error(f"Failed to load ERC20 ABI: {e}")
raise

async def _validate_signatures(self) -> None:
"""Validate loaded ERC20 signatures."""
# This function was not used, and it is now removed
pass

async def build_transaction(self, function_call: Any, additional_params: Optional[Dict[str, Any]] = None) -> Dict[str, Any]:
"""Enhanced transaction building with EIP-1559 support and proper gas estimation."""
additional_params = additional_params or {}
Expand Down

0 comments on commit 63865d1

Please sign in to comment.