diff options
author | Stephen Buttolph <[email protected]> | 2020-06-07 21:27:09 +0000 |
---|---|---|
committer | Stephen Buttolph <[email protected]> | 2020-06-07 21:27:09 +0000 |
commit | 298d08dbf8b74a32f7bb74e25cc5bf729c35a6da (patch) | |
tree | 241926e99f3c9ad0c5c7a1b8d2c02517ecc3bdc6 /coreth.go | |
parent | ab977c426fe8021275fc1c7fd6cdb80d42191886 (diff) |
fix minor typo
Diffstat (limited to 'coreth.go')
-rw-r--r-- | coreth.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |