AddRemotes should add the given transactions to the pool.
([]*types.Transaction)
| 81 | type txPool interface { |
| 82 | // AddRemotes should add the given transactions to the pool. |
| 83 | AddRemotes([]*types.Transaction) []error |
| 84 | |
| 85 | // Pending should return pending transactions. |
| 86 | // The slice should be modifiable by the caller. |
no outgoing calls