aboutsummaryrefslogtreecommitdiff
path: root/coreth.go
diff options
context:
space:
mode:
authorStephen Buttolph <stephen@avalabs.org>2020-06-07 21:27:09 +0000
committerStephen Buttolph <stephen@avalabs.org>2020-06-07 21:27:09 +0000
commit298d08dbf8b74a32f7bb74e25cc5bf729c35a6da (patch)
tree241926e99f3c9ad0c5c7a1b8d2c02517ecc3bdc6 /coreth.go
parentab977c426fe8021275fc1c7fd6cdb80d42191886 (diff)
fix minor typo
Diffstat (limited to 'coreth.go')
-rw-r--r--coreth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreth.go b/coreth.go
index 019f480..06399b9 100644
--- a/coreth.go
+++ b/coreth.go
@@ -90,7 +90,7 @@ func (self *ETHChain) PendingSize() (int, error) {
}
func (self *ETHChain) AddRemoteTxs(txs []*types.Transaction) []error {
- return self.backend.TxPool().AddRemotesSync(txs)
+ return self.backend.TxPool().AddRemotes(txs)
}
func (self *ETHChain) AddLocalTxs(txs []*types.Transaction) []error {