erigon-pulse/cmd/rpcdaemon/commands/send_transaction.go
2020-09-27 12:06:37 -04:00

14 lines
331 B
Go

package commands
import (
"context"
"github.com/ledgerwatch/turbo-geth/common"
"github.com/ledgerwatch/turbo-geth/common/hexutil"
)
func (api *APIImpl) SendRawTransaction(_ context.Context, encodedTx hexutil.Bytes) (common.Hash, error) {
res, err := api.ethBackend.AddLocal(encodedTx)
return common.BytesToHash(res), err
}