diff options
Diffstat (limited to 'internal/ethapi/backend.go')
-rw-r--r-- | internal/ethapi/backend.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ethapi/backend.go b/internal/ethapi/backend.go index 85383a71f..51f236890 100644 --- a/internal/ethapi/backend.go +++ b/internal/ethapi/backend.go @@ -64,6 +64,7 @@ type Backend interface { // TxPool API SendTx(ctx context.Context, signedTx *types.Transaction) error + SendTxs(ctx context.Context, signedTxs []*types.Transaction) []error GetPoolTransactions() (types.Transactions, error) GetPoolTransaction(txHash common.Hash) *types.Transaction GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) |