mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
cmd/evm/internal/t8ntool: use HomesteadSigner instead of FrontierSigner
This commit is contained in:
parent
13c5b1149b
commit
e13c68067a
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ func signUnsignedTransactions(txs []*txWithKey, signer types.Signer) (types.Tran
|
|||
if tx.protected {
|
||||
signed, err = types.SignTx(tx.tx, signer, tx.key)
|
||||
} else {
|
||||
signed, err = types.SignTx(tx.tx, types.FrontierSigner{}, tx.key)
|
||||
signed, err = types.SignTx(tx.tx, types.HomesteadSigner{}, tx.key)
|
||||
}
|
||||
if err != nil {
|
||||
return nil, NewError(ErrorJson, fmt.Errorf("tx %d: failed to sign tx: %v", i, err))
|
||||
|
|
|
|||
Loading…
Reference in a new issue