aboutsummaryrefslogtreecommitdiffstats
path: root/dex/api_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 /dex/api_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 'dex/api_backend.go')
-rw-r--r--dex/api_backend.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/dex/api_backend.go b/dex/api_backend.go
index 9929b062d..80fe1e39b 100644
--- a/dex/api_backend.go
+++ b/dex/api_backend.go
@@ -154,6 +154,10 @@ func (b *DexAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction)
return b.dex.txPool.AddLocal(signedTx)
}
+func (b *DexAPIBackend) SendTxs(ctx context.Context, signedTxs []*types.Transaction) []error {
+ return b.dex.txPool.AddLocals(signedTxs)
+}
+
func (b *DexAPIBackend) GetPoolTransactions() (types.Transactions, error) {
pending, err := b.dex.txPool.Pending()
if err != nil {