summaryrefslogtreecommitdiff
path: root/rpcs/txSyncer.go
diff options
context:
space:
mode:
Diffstat (limited to 'rpcs/txSyncer.go')
-rw-r--r--rpcs/txSyncer.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/rpcs/txSyncer.go b/rpcs/txSyncer.go
index 4d9f344f1..0290d82a6 100644
--- a/rpcs/txSyncer.go
+++ b/rpcs/txSyncer.go
@@ -23,7 +23,6 @@ import (
"time"
"github.com/algorand/go-algorand/data"
- "github.com/algorand/go-algorand/data/pooldata"
"github.com/algorand/go-algorand/data/transactions"
"github.com/algorand/go-algorand/logging"
"github.com/algorand/go-algorand/network"
@@ -33,7 +32,7 @@ import (
// PendingTxAggregate is a container of pending transactions
type PendingTxAggregate interface {
PendingTxIDs() []transactions.Txid
- PendingTxGroups() ([]pooldata.SignedTxGroup, uint64)
+ PendingTxGroups() [][]transactions.SignedTxn
}
// TxSyncClient abstracts sync-ing pending transactions from a peer.