mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
core/txpool: fix test stub after rebase
This commit is contained in:
parent
55dae4fd09
commit
6d81fe2dcc
1 changed files with 3 additions and 1 deletions
|
|
@ -114,7 +114,9 @@ func (failingSubPool) ValidateTxBasics(*types.Transaction) error { return nil }
|
|||
|
||||
func (failingSubPool) Add([]*types.Transaction, bool) []error { return nil }
|
||||
|
||||
func (failingSubPool) Pending(PendingFilter) map[common.Address][]*LazyTransaction { return nil }
|
||||
func (failingSubPool) Pending(PendingFilter) (map[common.Address][]*LazyTransaction, int) {
|
||||
return nil, 0
|
||||
}
|
||||
|
||||
func (failingSubPool) SubscribeTransactions(chan<- core.NewTxsEvent, bool) event.Subscription {
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue