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
I can't find any Verifies the ECDSA signature against the Transacton in ethereumj.
Should ECKey.verify be call in Transaction.validate or some other flows?
And in go-ethereum there are ecdsa signature validate of the transaction :
func (pool *TxPool) validateTx(tx *types.Transaction) (e error) {
from, err := types.Sender(pool.signer, tx)
if err != nil {
e = ErrInvalidSender
return
}
The text was updated successfully, but these errors were encountered:
I can't find any Verifies the ECDSA signature against the Transacton in ethereumj.
Should ECKey.verify be call in Transaction.validate or some other flows?
And in go-ethereum there are ecdsa signature validate of the transaction :
func (pool *TxPool) validateTx(tx *types.Transaction) (e error) {
The text was updated successfully, but these errors were encountered: