aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-23 12:12:10 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commit2d6f583571100815ad546fe14e2a18548dee7a80 (patch)
treee30822995a68b37b46eb4e46edba4c86667a37b8 /eth
parent407aeb0d06d7abeb5e0e4e35ce40264b9d7f737a (diff)
downloaddexon-2d6f583571100815ad546fe14e2a18548dee7a80.tar.gz
dexon-2d6f583571100815ad546fe14e2a18548dee7a80.tar.zst
dexon-2d6f583571100815ad546fe14e2a18548dee7a80.zip
api: allow sending batch of raw transactions
Diffstat (limited to 'eth')
-rw-r--r--eth/api_backend.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/eth/api_backend.go b/eth/api_backend.go
index b8a525f02..32faea206 100644
--- a/eth/api_backend.go
+++ b/eth/api_backend.go
@@ -157,6 +157,10 @@ func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction)
return b.eth.txPool.AddLocal(signedTx)
}
+func (b *EthAPIBackend) SendTxs(ctx context.Context, signedTxs []*types.Transaction) []error {
+ return b.eth.txPool.AddLocals(signedTxs)
+}
+
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
pending, err := b.eth.txPool.Pending()
if err != nil {