aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi/backend.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-23 12:12:10 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:54 +0800
commite79dcc385d37eefb121f675d3800dbfe59b515c7 (patch)
tree220cd446864dcca990d1adeafd23fe7e301ced7e /internal/ethapi/backend.go
parentc51c2a240cd3f01bf8bdb6a1644a902b2335b2aa (diff)
downloaddexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.tar
dexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.tar.gz
dexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.tar.bz2
dexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.tar.lz
dexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.tar.xz
dexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.tar.zst
dexon-e79dcc385d37eefb121f675d3800dbfe59b515c7.zip
api: allow sending batch of raw transactions
Diffstat (limited to 'internal/ethapi/backend.go')
-rw-r--r--internal/ethapi/backend.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ethapi/backend.go b/internal/ethapi/backend.go
index 801b55d5c..da13d3661 100644
--- a/internal/ethapi/backend.go
+++ b/internal/ethapi/backend.go
@@ -65,6 +65,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)