From 405c2f9943d7f11c3c3df13533625756f297ceb5 Mon Sep 17 00:00:00 2001 From: majtte <139552589+majtte@users.noreply.github.com> Date: Mon, 19 Jan 2026 14:58:38 +0100 Subject: [PATCH] Update transaction_signing.go --- core/types/transaction_signing.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/core/types/transaction_signing.go b/core/types/transaction_signing.go index ef8fb194d5..cc03e248c4 100644 --- a/core/types/transaction_signing.go +++ b/core/types/transaction_signing.go @@ -392,21 +392,11 @@ func (s EIP155Signer) Hash(tx *Transaction) common.Hash { // replay-protected. type HomesteadSigner struct{ FrontierSigner } -func (hs HomesteadSigner) ChainID() *big.Int { - return nil -} - func (hs HomesteadSigner) Equal(s2 Signer) bool { _, ok := s2.(HomesteadSigner) return ok } -// SignatureValues returns signature values. This signature -// needs to be in the [R || S || V] format where V is 0 or 1. -func (hs HomesteadSigner) SignatureValues(tx *Transaction, sig []byte) (r, s, v *big.Int, err error) { - return hs.FrontierSigner.SignatureValues(tx, sig) -} - func (hs HomesteadSigner) Sender(tx *Transaction) (common.Address, error) { if tx.Type() != LegacyTxType { return common.Address{}, ErrTxTypeNotSupported